install/includes/common.php
changeset 685 17ebe24cdf85
parent 626 be0e904eec17
child 801 eb8b23f11744
equal deleted inserted replaced
684:15dbbe7e7674 685:17ebe24cdf85
     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.4 (Caoineag alpha 4)
     5  * Version 1.1.5 (Caoineag alpha 5)
     6  * Copyright (C) 2006-2008 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
    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.4',
    19   'version' => '1.1.5',
    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