diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 13:14:18 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 13:14:18 +0100 |
commit | 9e829e10e6f2d3786c358ca6c8c3ba2a149a6a40 (patch) | |
tree | c38faf49e7274c3edfdb5ebb59ce80ac35fe57d8 /system/core/Input.php | |
parent | efd856edce0b952c8a7a62ec953ae1baee77ff34 (diff) | |
parent | 8db01f13809a92bac7bc95b02893175d7654d627 (diff) |
Merge branch '3.1-stable' into develop
Diffstat (limited to 'system/core/Input.php')
-rw-r--r-- | system/core/Input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index f6397e35b..cbb185a8d 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -521,7 +521,7 @@ class CI_Input { $netaddr = explode(':', str_replace('::', str_repeat(':', 9 - substr_count($netaddr, ':')), $netaddr)); for ($j = 0; $j < 8; $j++) { - $netaddr[$i] = intval($netaddr[$j], 16); + $netaddr[$j] = intval($netaddr[$j], 16); } } else |