Changeset 864 in ExiteCMS for trunk/administration/upgrade.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/upgrade.php

    r863 r864  
    2626    if (strlen($tempfile) != 12 || substr($tempfile,0,3) != "rev" || substr($tempfile,-4) != ".php") continue; 
    2727    $thisrev = substr($tempfile,3,5); 
    28     if (!isNum($thisrev) || $thisrev <= $settings['revision']) { 
    29         $upgraded[] = $tempfile; 
    30     } else { 
    31         $upgrades[] = $tempfile; 
     28    if (isNum($thisrev)) { 
     29        if ($thisrev <= $settings['revision']) { 
     30            $upgraded[] = $tempfile; 
     31        } else { 
     32            $upgrades[] = $tempfile; 
     33        } 
    3234    } 
    3335} 
Note: See TracChangeset for help on using the changeset viewer.