diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-18 23:51:31 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-18 23:51:31 +0000 |
commit | 718a5bffa4902f712f9cf9923172a0c1dc641d70 (patch) | |
tree | 40d7d7a5622cbfd295384f7ea13189fff4ceba22 /start.php | |
parent | 1074834100d5191ecb9a6aa02a532fae485f9378 (diff) | |
download | elgg-718a5bffa4902f712f9cf9923172a0c1dc641d70.tar.gz elgg-718a5bffa4902f712f9cf9923172a0c1dc641d70.tar.bz2 |
added some defines to make the code easier to understand
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,13 +4,19 @@ *
*/
+ // set some simple defines
+ define('TP_OLD_ALBUM', 0);
+ define('TP_NEW_ALBUM', 1);
+
+
// setup tidypics settings object
global $CONFIG;
if (!isset($CONFIG->tidypics))
$CONFIG->tidypics = new stdClass;
include dirname(__FILE__) . "/settings.php";
-
+
+
/**
* tidypics plugin initialisation functions.
*/
|