Changeset - 50895f17f92a
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 14 years ago 2011-10-07 23:34:34
ohnobinki@ohnopublishing.net
Replace call to deprecated split() with call to explode().
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
admin/rehash.php
Show inline comments
 
@@ -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']))
0 comments (0 inline, 0 general)