aboutsummaryrefslogtreecommitdiffstats
path: root/include/constants.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-10-31 02:41:32 +0000
committerrvelices <rv-github@modusoptimus.com>2006-10-31 02:41:32 +0000
commita81bac0f15907d81da4e9fea978840b9a10210c8 (patch)
tree7ad7312cea1e447a698e627093614174f5a7552e /include/constants.php
parent9c3e182268ed2bc5df5f31cf4045b217f7ad8791 (diff)
plugins go now in the #plugins table
git-svn-id: http://piwigo.org/svn/trunk@1584 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/constants.php')
-rw-r--r--include/constants.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/constants.php b/include/constants.php
index 849f11378..ab4afe630 100644
--- a/include/constants.php
+++ b/include/constants.php
@@ -35,7 +35,7 @@ define('PHPWG_DEFAULT_LANGUAGE', 'en_UK.iso-8859-1');
define('GENERAL_MESSAGE', 200);
define('GENERAL_ERROR', 202);
define('CRITICAL_MESSAGE', 203);
-define('CRITICAL_ERROR', 204);
+define('CRITICAL_ERROR', 204);
// Access codes
define('ACCESS_NONE', 0);
@@ -71,4 +71,5 @@ define('SEARCH_TABLE', $prefixeTable.'search');
define('USER_MAIL_NOTIFICATION_TABLE', $prefixeTable.'user_mail_notification');
define('TAGS_TABLE', $prefixeTable.'tags');
define('IMAGE_TAG_TABLE', $prefixeTable.'image_tag');
+define('PLUGINS_TABLE', $prefixeTable.'plugins');
?>