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:
parent
669d471fed
commit
b5665344c2
@ -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') {
|
||||
|
Loading…
Reference in New Issue
Block a user