Changeset 5887

Show
Ignore:
Timestamp:
08/17/07 01:59:37 (1 year ago)
Author:
markjaquith
Message:

correct logic grouping when reading importers. fixes #4763

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/import.php

    r5874 r5887  
    1717$imports_dir = @ opendir($import_root); 
    1818if ($imports_dir) { 
    19     while ($file = readdir($imports_dir) !== false) { 
     19    while (($file = readdir($imports_dir)) !== false) { 
    2020        if ($file{0} == '.') { 
    2121            continue;