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.0.2 (Coblynau) |
5 * Version 1.0.3 (Dyrad) |
6 * Copyright (C) 2006-2007 Dan Fuhry |
6 * Copyright (C) 2006-2007 Dan Fuhry |
7 * |
7 * |
8 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
8 * 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. |
9 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
10 * |
10 * |
35 // Our version number |
35 // Our version number |
36 // This needs to match the version number in the database. This number should |
36 // This needs to match the version number in the database. This number should |
37 // be the expected output of enano_version(), which will always be in the |
37 // be the expected output of enano_version(), which will always be in the |
38 // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1 |
38 // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1 |
39 // You'll want to change this for custom distributions. |
39 // You'll want to change this for custom distributions. |
40 $version = '1.0.2'; |
40 $version = '1.0.3'; |
41 |
41 |
42 /** |
42 /** |
43 * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it |
43 * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it |
44 * from very early on in the script to measure the starting time of Enano. |
44 * from very early on in the script to measure the starting time of Enano. |
45 * @return float |
45 * @return float |