decir/constants.php
author Dan
Wed, 17 Oct 2007 23:17:09 -0400
changeset 3 88b85b9b9272
parent 0 0417a5a0c7be
child 6 3f66ec435f08
permissions -rw-r--r--
What can I say? More progress. Mostly bugfixes and ACL stuff now. Which reminds me - don't use this release, there are quite a few access bugs in it right now.

<?php
/*
 * Decir
 * Version 0.1
 * Copyright (C) 2007 Dan Fuhry
 * constants.php - important values
 *
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
 */

if(!defined('ENANO_DECIR_VERSION'))
  die('Hacking attempt');

define('FORUM_FORUM', 1);
define('FORUM_CATEGORY', 2);

define('TOPIC_NORMAL', 1);
define('TOPIC_STICKY', 4);
define('TOPIC_ANNOUNCE', 5);

?>