Remove extra paren. Props tmountjr. fixes #4752

git-svn-id: https://develop.svn.wordpress.org/trunk@5874 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-08-15 22:26:54 +00:00
parent 669d471fed
commit b5665344c2
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ $import_loc = 'wp-admin/import';
$import_root = ABSPATH.$import_loc;
$imports_dir = @ opendir($import_root);
if ($imports_dir) {
while (($file = readdir($imports_dir) !== false) {
while ($file = readdir($imports_dir) !== false) {
if ($file{0} == '.') {
continue;
} elseif (substr($file, -4) == '.php') {