Merge branch 'stable'

This commit is contained in:
following
2013-02-08 14:15:18 +01:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -135,7 +135,7 @@ class OcSmarty extends Smarty
$this->_cache_including = $_cache_including; $this->_cache_including = $_cache_including;
} }
function display() function display($dummy1=null, $dummy2=null, $dummy3=null)
{ {
global $opt, $db, $cookie, $login, $menu, $sqldebugger, $translate; global $opt, $db, $cookie, $login, $menu, $sqldebugger, $translate;
$cookie->close(); $cookie->close();
@@ -303,7 +303,7 @@ class OcSmarty extends Smarty
} }
// check if this template is valid // check if this template is valid
function is_cached() function is_cached($dummy1=null, $dummy2=null, $dummy3=null)
{ {
global $login; global $login;
+1 -1
View File
@@ -105,7 +105,7 @@ class useroptions
$this->nOptions[$pId]['option_value'] = $pValue; $this->nOptions[$pId]['option_value'] = $pValue;
return true; return true;
} }
else if (ereg($this->nOptions[$pId]['check_regex'], $pValue) || strlen($pValue) == 0) else if (preg_match("/" . $this->nOptions[$pId]['check_regex'] . "/", $pValue) || strlen($pValue) == 0)
{ {
$this->nOptions[$pId]['option_value'] = $pValue; $this->nOptions[$pId]['option_value'] = $pValue;
return true; return true;