Remove extra paren. Props tmountjr. fixes #4752
git-svn-id: http://svn.automattic.com/wordpress/trunk@5874 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ff20fd6c17
commit
4ab52670e9
|
@ -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