Changeset 1286 for branches/1.2


Ignore:
Timestamp:
03/07/10 15:27:28 (3 years ago)
Author:
nick_ramsay
Message:

[Branch 1.2] Updated version number, read me and upgrade script for Hotaru 1.1.2.

Location:
branches/1.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/Hotaru.php

    r1281 r1286  
    2626class Hotaru 
    2727{ 
    28     protected $version              = "1.1.1";  // Hotaru CMS version 
     28    protected $version              = "1.1.2";  // 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

    r1233 r1286  
    11HOTARU CMS 
    2 Version: 1.1.1 
    3 Released: Feb 24th 2010 
     2Version: 1.1.2 
     3Released: Mar 8th 2010 
    44 
    55INSTALLATION 
     
    88Please visit http://hotarucms.org/showthread.php?t=14 for the most up-to-date version of these instructions. 
    99 
    10 Instructions last updated: January 18th 2010 
     10Instructions last updated: Mar 8th 2010 
    1111 
    1212Requirements 
     
    1818   1. Backup your database. 
    1919   2. Download the latest version of Hotaru CMS. 
    20    3. Overwrite ALL the old files. If you've made any customizations, read this first: http://hotarucms.org/showthread.php?t=46 
    21    4. Go to /install/upgrade.php 
    22    5. When finished, delete the install folder. 
     20   3. Turn off all your plugins. 
     21   4. Overwrite ALL the old files. If you've made any customizations, read this first: http://hotarucms.org/showthread.php?t=46 
     22   5. Go to /install/upgrade.php 
     23   6. Turn your plugins back on 
     24   7. Reactivate your widgets 
     25   8. When finished, delete the install folder. 
    2326 
    2427First-time Installation 
  • branches/1.2/install/upgrade.php

    r1233 r1286  
    345345    if ($old_version == "1.1") { $old_version = "1.1.1"; } // update "old version" for next set of upgrades 
    346346     
     347    // 1.1 to 1.1.2 
     348    if ($old_version == "1.1.1") { $old_version = "1.1.2"; } // update "old version" for next set of upgrades 
     349     
    347350    // Update Hotaru version number to the database (referred to when upgrading) 
    348351    $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.