Merge branch 'stable'
This commit is contained in:
@@ -135,7 +135,7 @@ class OcSmarty extends Smarty
|
||||
$this->_cache_including = $_cache_including;
|
||||
}
|
||||
|
||||
function display()
|
||||
function display($dummy1=null, $dummy2=null, $dummy3=null)
|
||||
{
|
||||
global $opt, $db, $cookie, $login, $menu, $sqldebugger, $translate;
|
||||
$cookie->close();
|
||||
@@ -303,7 +303,7 @@ class OcSmarty extends Smarty
|
||||
}
|
||||
|
||||
// check if this template is valid
|
||||
function is_cached()
|
||||
function is_cached($dummy1=null, $dummy2=null, $dummy3=null)
|
||||
{
|
||||
global $login;
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@ class useroptions
|
||||
$this->nOptions[$pId]['option_value'] = $pValue;
|
||||
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;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user