Changeset 2277
- Timestamp:
- 12/02/10 10:55:50 (18 months ago)
- Files:
-
- 1 modified
-
branches/1.5/install/install-upgrade.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/install/install-upgrade.php
r2268 r2277 659 659 @rmdir(CACHE . '1'); 660 660 } 661 661 662 // update "old version" for next set of upgrades 662 663 $old_version = "1.4.2"; 664 } 665 666 // 1.4.2 to 1.5.0 667 if ($old_version == "1.4.2") 668 { 669 // remove sys_updates option from settings 670 $sql = "DELETE FROM " . TABLE_SETTINGS . " WHERE settings_name = %s"; 671 $h->db->query($h->db->prepare($sql, 'SYS_UPDATES')); 672 673 // update "old version" for next set of upgrades 674 $old_version = "1.5.0"; 663 675 } 664 676