install/includes/common.php
changeset 536 218a627eb53e
parent 436 242353360e37
child 626 be0e904eec17
equal deleted inserted replaced
533:698a8f04957c 536:218a627eb53e
     1 <?php
     1 <?php
     2 
     2 
     3 /*
     3 /*
     4  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
     4  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
     5  * Version 1.1.1
     5  * Version 1.1.4 (Caoineag alpha 4)
     6  * Copyright (C) 2006-2007 Dan Fuhry
     6  * Copyright (C) 2006-2008 Dan Fuhry
     7  * Installation package
     7  * Installation package
     8  * common.php - Installer common functions
     8  * common.php - Installer common functions
     9  *
     9  *
    10  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
    10  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
    11  * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    11  * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    14  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
    14  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
    15  */
    15  */
    16 
    16 
    17 // Our version number. This needs to be changed for any custom releases.
    17 // Our version number. This needs to be changed for any custom releases.
    18 $installer_version = array(
    18 $installer_version = array(
    19   'version' => '1.1.3',
    19   'version' => '1.1.4',
    20   'type' => 'alpha'
    20   'type' => 'alpha'
    21   // If type is set to "rc", "beta", or "alpha", optionally another version number can be issued with the key 'sub':
    21   // If type is set to "rc", "beta", or "alpha", optionally another version number can be issued with the key 'sub':
    22   // 'sub' => '3' will produce Enano 1.1.1a3 / Enano 1.1.1 alpha 3
    22   // 'sub' => '3' will produce Enano 1.1.1a3 / Enano 1.1.1 alpha 3
    23 );
    23 );
    24 
    24