replaced split() with explode()
This commit is contained in:
@@ -706,7 +706,7 @@
|
||||
$sql_innerjoin[] = '`cache_logs` ON `caches`.`cache_id`=`cache_logs`.`cache_id`';
|
||||
$sql_where[] = '`cache_logs`.`user_id`=\'' . sql_escape($finder_id) . '\'';
|
||||
|
||||
$ids = split(',', $options['logtype']);
|
||||
$ids = explode(',', $options['logtype']);
|
||||
$idNumbers = '0';
|
||||
foreach ($ids AS $id)
|
||||
{
|
||||
@@ -1811,4 +1811,4 @@ function outputLocidSelectionForm($locSql, $urlparams)
|
||||
tpl_BuildTemplate();
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user