Changeset 1188
- Timestamp:
- 02/20/10 10:08:04 (3 years ago)
- Location:
- branches/1.0
- Files:
-
- 4 edited
-
Hotaru.php (modified) (1 diff)
-
READ_ME.txt (modified) (1 diff)
-
content/main_language.php (modified) (1 diff)
-
install/upgrade.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/Hotaru.php
r1180 r1188 26 26 class Hotaru 27 27 { 28 protected $version = "1. 0.5"; // Hotaru CMS version28 protected $version = "1.1"; // Hotaru CMS version 29 29 protected $isDebug = false; // show db queries and page loading time 30 30 protected $isAdmin = false; // flag to tell if we are in Admin or not -
branches/1.0/READ_ME.txt
r1056 r1188 1 1 HOTARU CMS 2 Version: 1. 0.53 Released: Feb 1st20102 Version: 1.1 3 Released: Feb 20th 2010 4 4 5 5 INSTALLATION -
branches/1.0/content/main_language.php
r970 r1188 76 76 /* Errors */ 77 77 $lang["main_theme_page_not_found"] = "Page not found"; 78 $lang['error_csrf'] = " Ah! You've triggered a CSRF error. That's only supposed to happen when someone tries hacking into the site...";78 $lang['error_csrf'] = "CSRF error. Please refresh the page and try again."; 79 79 80 80 /* header */ -
branches/1.0/install/upgrade.php
r1056 r1188 339 339 } 340 340 341 // 1.0.5 to 1.1 342 if ($old_version == "1.0.5") { 343 344 // update "old version" for next set of upgrades 345 $old_version = "1.1"; 346 } 347 341 348 // Update Hotaru version number to the database (referred to when upgrading) 342 349 $sql = "UPDATE " . TABLE_MISCDATA . " SET miscdata_key = %s, miscdata_value = %s, miscdata_default = %s WHERE miscdata_key = %s";
Note: See TracChangeset
for help on using the changeset viewer.