# HG changeset patch # User Nathan Phillip Brink # Date 2011-10-07 23:34:34 # Node ID 50895f17f92adeb7f4440c7509299d539b41448f # Parent bea0d83193701e937832eaf569ac0bca5c7d1fd0 Replace call to deprecated split() with call to explode(). diff --git a/admin/rehash.php b/admin/rehash.php --- a/admin/rehash.php +++ b/admin/rehash.php @@ -58,7 +58,7 @@ function main($argc, $argv) $crawl_only = NULL; if (isset($opts['crawl-only'])) - $crawl_only = split(',', $opts['crawl-only']); + $crawl_only = explode(',', $opts['crawl-only']); $verbosity = 5; if (isset($opts['verbosity']))