aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/migration/tool/config.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-02-23 13:50:53 -0500
committerDavid King <imkingdavid@gmail.com>2013-02-23 13:50:53 -0500
commit0987efa18980c2cf8deb1fcb13baa1a43ae6035b (patch)
treefc2f81b8467e9ce809f6c91b0cfb29e6592b3299 /phpBB/includes/db/migration/tool/config.php
parent3e90082dbb3a527846b9b0c3ae6407946a530fdb (diff)
parentf6bb14569b0a777d3511b732201af9d1a415f2ed (diff)
downloadforums-0987efa18980c2cf8deb1fcb13baa1a43ae6035b.tar
forums-0987efa18980c2cf8deb1fcb13baa1a43ae6035b.tar.gz
forums-0987efa18980c2cf8deb1fcb13baa1a43ae6035b.tar.bz2
forums-0987efa18980c2cf8deb1fcb13baa1a43ae6035b.tar.xz
forums-0987efa18980c2cf8deb1fcb13baa1a43ae6035b.zip
Merge remote-tracking branch 'EXreaction/ticket/11351' into develop
# By Nathaniel Guse (4) and Nathan Guse (1) # Via Nathan Guse * EXreaction/ticket/11351: [feature/migrations] getLocalisedMessage function for migration exception [feature/migrations] Fix unfulfillable function [feature/migrations] getParameters function for migration exception [feature/migrations] Add explanatory language string for migration errors [feature/migrations] Add language strings for migrations errors
Diffstat (limited to 'phpBB/includes/db/migration/tool/config.php')
-rw-r--r--phpBB/includes/db/migration/tool/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/migration/tool/config.php b/phpBB/includes/db/migration/tool/config.php
index d9cc20053e..458a25fb66 100644
--- a/phpBB/includes/db/migration/tool/config.php
+++ b/phpBB/includes/db/migration/tool/config.php
@@ -49,7 +49,7 @@ class phpbb_db_migration_tool_config implements phpbb_db_migration_tool_interfac
{
if (isset($this->config[$config_name]))
{
- throw new phpbb_db_migration_exception('CONFIG_ALREADY_EXISTS', $config_name);
+ throw new phpbb_db_migration_exception('CONFIG_ALREADY_EXIST', $config_name);
}
$this->config->set($config_name, $config_value, !$is_dynamic);