Skip to content

Commit

Permalink
Deprecated use of split()
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/File_Archive/trunk@302931 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
CloCkWeRX committed Aug 31, 2010
1 parent d22e3c5 commit e30895d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Archive.php
Expand Up @@ -39,7 +39,7 @@

function File_Archive_cleanCache($file, $group)
{
$file = split('_', $file);
$file = explode('_', $file);
if (count($file) != 3) {
return false; //not a File_Archive file, keep it
}
Expand Down

0 comments on commit e30895d

Please sign in to comment.