mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 04:10:38 +02:00
Minor performance increase.
This commit is contained in:
@@ -491,9 +491,12 @@ class e_parse extends e_parser
|
|||||||
* @return string|array
|
* @return string|array
|
||||||
* @todo complete the documentation of this essential method
|
* @todo complete the documentation of this essential method
|
||||||
*/
|
*/
|
||||||
public function toDB($data, $nostrip =false, $no_encode = false, $mod = false, $parm = null)
|
public function toDB($data = null, $nostrip =false, $no_encode = false, $mod = false, $parm = null)
|
||||||
{
|
{
|
||||||
$core_pref = e107::getConfig();
|
if($data === null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (is_array($data))
|
if (is_array($data))
|
||||||
{
|
{
|
||||||
@@ -508,9 +511,7 @@ class e_parse extends e_parser
|
|||||||
|
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (MAGIC_QUOTES_GPC == true && $nostrip == false)
|
if (MAGIC_QUOTES_GPC == true && $nostrip == false)
|
||||||
{
|
{
|
||||||
$data = stripslashes($data);
|
$data = stripslashes($data);
|
||||||
@@ -521,6 +522,8 @@ class e_parse extends e_parser
|
|||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$core_pref = e107::getConfig();
|
||||||
|
|
||||||
if ($mod !== 'pReFs') //XXX We're not saving prefs.
|
if ($mod !== 'pReFs') //XXX We're not saving prefs.
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user