install/includes/common.php
changeset 1081 745200a9cc2a
parent 812 68060328e9c6
child 1195 449fdd113eb0
equal deleted inserted replaced
1080:6358f769ecb1 1081:745200a9cc2a
     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.6 (Caoineag beta 1)
     5  * Copyright (C) 2006-2009 Dan Fuhry
     6  * Copyright (C) 2006-2008 Dan Fuhry
       
     7  * Installation package
     6  * Installation package
     8  * common.php - Installer common functions
     7  * common.php - Installer common functions
     9  *
     8  *
    10  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
     9  * 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.
    10  * 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.
    13  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
    15  */
    14  */
    16 
    15 
    17 // Our version number. This needs to be changed for any custom releases.
    16 // Our version number. This needs to be changed for any custom releases.
    18 $installer_version = array(
    17 $installer_version = array(
    19   'version' => '1.1.6',
    18   'version' => '1.1.7',
    20   'type' => 'beta'
    19   'type' => 'beta'
    21   // If type is set to "rc", "beta", or "alpha", optionally another version number can be issued with the key 'sub':
    20   // 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
    21   // 'sub' => '3' will produce Enano 1.1.1a3 / Enano 1.1.1 alpha 3
    23 );
    22 );
    24 
    23