Out with split(), in with explode()

This commit is contained in:
Tony Landis
2009-03-27 23:20:19 -06:00
parent ff9e25abcf
commit 87a8e0f92d
101 changed files with 639 additions and 639 deletions

View File

@@ -30,11 +30,11 @@ function CORE_database_mass_delete($VAR, &$construct, $type)
if(isset($VAR["delete_id"]))
{
$id = split(',',$VAR["delete_id"]);
$id = explode(',',$VAR["delete_id"]);
}
elseif (isset($VAR["id"]))
{
$id = split(',',$VAR["id"]);
$id = explode(',',$VAR["id"]);
}
for($i=0; $i<count($id); $i++)