removed array_stripslashes function, which is now in common_functions.inc.php

This commit is contained in:
Ralf Becker 2010-06-11 10:55:24 +00:00
parent 401d9dcf21
commit 88583e9ebf

View File

@ -88,31 +88,6 @@ if (get_magic_quotes_gpc())
$data = array_stripslashes($data);
}
/**
* Strip all slashes from an array
*
* @param mixed $subject
* @return mixed
*/
function array_stripslashes($subject)
{
if (is_string($subject))
{
return stripslashes($subject);
}
if (!is_array($subject))
{
return ($subject);
}
$ret = array();
foreach ($subject as $key => $value)
{
$ret[$key] = array_stripslashes($value);
}
return $ret;
}
// instanciate comand and run it
$cmd = admin_cmd::instanciate($data);
$cmd->check_remote_access($_REQUEST['secret'],$config_passwd);