aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/controller
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/install/controller')
-rw-r--r--phpBB/phpbb/install/controller/install.php2
-rw-r--r--phpBB/phpbb/install/controller/update.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/install/controller/install.php b/phpBB/phpbb/install/controller/install.php
index 0fd4e8897c..baa4e4807a 100644
--- a/phpBB/phpbb/install/controller/install.php
+++ b/phpBB/phpbb/install/controller/install.php
@@ -105,7 +105,7 @@ class install
{
if ($this->install_helper->is_phpbb_installed())
{
- throw new http_exception(404, 'INSTALL_PHPBB_IS_ALREADY_INSTALLED');
+ throw new http_exception(404, 'INSTALL_PHPBB_INSTALLED');
}
$this->template->assign_vars(array(
diff --git a/phpBB/phpbb/install/controller/update.php b/phpBB/phpbb/install/controller/update.php
index 6a4341710a..8ecd8b3cb8 100644
--- a/phpBB/phpbb/install/controller/update.php
+++ b/phpBB/phpbb/install/controller/update.php
@@ -103,7 +103,7 @@ class update
{
if (!$this->install_helper->is_phpbb_installed())
{
- throw new http_exception(404, 'INSTALL_PHPBB_IS_NOT_INSTALLED');
+ throw new http_exception(404, 'INSTALL_PHPBB_NOT_INSTALLED');
}
$this->template->assign_vars(array(