Changeset 864 in ExiteCMS for trunk/administration/upgrade.php
- Timestamp:
- 10/03/07 21:38:21 (5 years ago)
- File:
-
- 1 edited
-
trunk/administration/upgrade.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/administration/upgrade.php
r863 r864 26 26 if (strlen($tempfile) != 12 || substr($tempfile,0,3) != "rev" || substr($tempfile,-4) != ".php") continue; 27 27 $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 } 32 34 } 33 35 }
Note: See TracChangeset
for help on using the changeset viewer.
