mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 01:03:28 +09:00
Move IpFilter class to Security namespace
This commit is contained in:
parent
0adb13ca30
commit
544170b530
10 changed files with 94 additions and 94 deletions
|
|
@ -445,7 +445,7 @@ class Debug
|
|||
return $cache = true;
|
||||
|
||||
case 'ip':
|
||||
if (IpFilter::inRanges(RX_CLIENT_IP, Config::get('debug.allow')))
|
||||
if (Security\IpFilter::inRanges(RX_CLIENT_IP, Config::get('debug.allow')))
|
||||
{
|
||||
return $cache = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework;
|
||||
namespace Rhymix\Framework\Security;
|
||||
|
||||
/**
|
||||
* The IP filter class.
|
||||
Loading…
Add table
Add a link
Reference in a new issue