1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-24 15:13:04 +02:00

Update function calls where moved from e107_class.php to iphandler_class.php

This commit is contained in:
e107steved
2012-01-02 22:06:22 +00:00
parent 7998e4f247
commit 8962c13f50
33 changed files with 87 additions and 53 deletions

View File

@@ -1298,8 +1298,8 @@ class e_form
break;
case 'ip':
$e107 = e107::getInstance();
$value = $e107->ipDecode($value);
//$e107 = e107::getInstance();
$value = e107::getIPHandler()->ipDecode($value);
// else same
break;
@@ -1637,7 +1637,7 @@ class e_form
break;
case 'ip':
return $this->text($key, e107::getInstance()->ipDecode($value), 32, $parms);
return $this->text($key, e107::getIPHandler()->ipDecode($value), 32, $parms);
break;
case 'url':