Changeset 1188


Ignore:
Timestamp:
02/20/10 10:08:04 (3 years ago)
Author:
nick_ramsay
Message:

[Branch 1.0] Hotaru version and upgrade updates.

Location:
branches/1.0
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0/Hotaru.php

    r1180 r1188  
    2626class Hotaru 
    2727{ 
    28     protected $version              = "1.0.5";  // Hotaru CMS version 
     28    protected $version              = "1.1";  // Hotaru CMS version 
    2929    protected $isDebug              = false;    // show db queries and page loading time 
    3030    protected $isAdmin              = false;    // flag to tell if we are in Admin or not 
  • branches/1.0/READ_ME.txt

    r1056 r1188  
    11HOTARU CMS 
    2 Version: 1.0.5 
    3 Released: Feb 1st 2010 
     2Version: 1.1 
     3Released: Feb 20th 2010 
    44 
    55INSTALLATION 
  • branches/1.0/content/main_language.php

    r970 r1188  
    7676/* Errors */ 
    7777$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."; 
    7979 
    8080/* header */ 
  • branches/1.0/install/upgrade.php

    r1056 r1188  
    339339    } 
    340340     
     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     
    341348    // Update Hotaru version number to the database (referred to when upgrading) 
    342349    $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.