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

@@ -342,7 +342,7 @@ class CORE_list
$auth = Array('product:top', 'account_admin:top', 'affiliate:top', 'invoice:compare');
for($i=0; $i<count($auth); $i++) {
if($auth[$i] == $VAR['graph']) {
$m = split(':', $VAR['graph']);
$m = explode(':', $VAR['graph']);
$C_method->exe_noauth($m[0], $m[1]);
exit;
}