equal
deleted
inserted
replaced
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 * |
6 * |
8 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
7 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
9 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
8 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
10 * |
9 * |
11 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
10 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
42 // Our version number |
41 // Our version number |
43 // This needs to match the version number in the database. This number should |
42 // This needs to match the version number in the database. This number should |
44 // be the expected output of enano_version(), which will always be in the |
43 // be the expected output of enano_version(), which will always be in the |
45 // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1 |
44 // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1 |
46 // You'll want to change this for custom distributions. |
45 // You'll want to change this for custom distributions. |
47 $version = '1.1.6'; |
46 $version = '1.1.7'; |
48 |
47 |
49 /** |
48 /** |
50 * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it |
49 * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it |
51 * from very early on in the script to measure the starting time of Enano. |
50 * from very early on in the script to measure the starting time of Enano. |
52 * @return float |
51 * @return float |