Changeset 864 in ExiteCMS for trunk/administration/modules.php


Ignore:
Timestamp:
10/03/07 21:38:21 (5 years ago)
Author:
hverton
Message:

More xhtml fixes
Added forum poll configuration to the forum admin module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/administration/modules.php

    r834 r864  
    295295 
    296296    $variables['mod_errors'] = array(); 
    297     $variables['is_error'] = count($mod_errors); 
     297    $variables['is_error'] = 0; 
    298298 
    299299    // if an upgrade function exists, call it 
     
    313313while ($folder = readdir($temp)) { 
    314314    // skipping current and parent folder entries... 
    315     if (!in_array($folder, array("..","."))) { 
     315    if (!in_array($folder, array("..",".")) && $folder{0} != ".") { 
    316316        // if it's a directory, and a module_installer can be found in the directory... 
    317317        if (is_dir(PATH_MODULES.$folder) && file_exists(PATH_MODULES.$folder."/module_installer.php")) { 
Note: See TracChangeset for help on using the changeset viewer.