Changeset 1233


Ignore:
Timestamp:
02/24/10 03:11:52 (3 years ago)
Author:
nick_ramsay
Message:

[Branch 1.2] Version number, read me and upgrade script for Hotaru 1.1.1

Location:
branches/1.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/Hotaru.php

    r1214 r1233  
    2626class Hotaru 
    2727{ 
    28     protected $version              = "1.1";  // Hotaru CMS version 
     28    protected $version              = "1.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.2/READ_ME.txt

    r1188 r1233  
    11HOTARU CMS 
    2 Version: 1.1 
    3 Released: Feb 20th 2010 
     2Version: 1.1.1 
     3Released: Feb 24th 2010 
    44 
    55INSTALLATION 
  • branches/1.2/install/upgrade.php

    r1188 r1233  
    340340     
    341341    // 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     } 
     342    if ($old_version == "1.0.5") { $old_version = "1.1"; } // update "old version" for next set of upgrades 
     343     
     344    // 1.1 to 1.1.1 
     345    if ($old_version == "1.1") { $old_version = "1.1.1"; } // update "old version" for next set of upgrades 
    347346     
    348347    // Update Hotaru version number to the database (referred to when upgrading) 
Note: See TracChangeset for help on using the changeset viewer.