From f021bebdb1f8478469987227667788e9fc831ff1 Mon Sep 17 00:00:00 2001 From: wyd621 Date: Mon, 12 Aug 2013 09:51:18 +0800 Subject: [PATCH] * fix a bug for change TABLE_CUSTOM to TABLE_LANG. --- config/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.php b/config/config.php index 6a8eef8926..cec0bacb39 100644 --- a/config/config.php +++ b/config/config.php @@ -151,7 +151,7 @@ $config->objectTables['user'] = TABLE_USER; $config->objectTables['doc'] = TABLE_DOC; $config->objectTables['doclib'] = TABLE_DOCLIB; $config->objectTables['todo'] = TABLE_TODO; -$config->objectTables['custom'] = TABLE_CUSTOM; +$config->objectTables['custom'] = TABLE_LANG; /* Include extension config files. */ $extConfigFiles = glob($configRoot . 'ext/*.php');