replaced split() with explode()

This commit is contained in:
Sampiero
2013-05-09 02:30:17 +02:00
committed by following
parent ecc30cd936
commit 759fdda706

View File

@@ -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;
}
?>
?>