diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-07-23 22:55:31 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-23 22:55:31 +0200 |
commit | e08f1341127792e378580a10bbb0bdeafe93ff8d (patch) | |
tree | 4e59cef6e31e7f08fb80197c552966b45d47560d /phpBB/phpbb/install/controller/install.php | |
parent | fbd5929606169d3f780f0a59760c171b20bd906d (diff) | |
download | forums-e08f1341127792e378580a10bbb0bdeafe93ff8d.tar forums-e08f1341127792e378580a10bbb0bdeafe93ff8d.tar.gz forums-e08f1341127792e378580a10bbb0bdeafe93ff8d.tar.bz2 forums-e08f1341127792e378580a10bbb0bdeafe93ff8d.tar.xz forums-e08f1341127792e378580a10bbb0bdeafe93ff8d.zip |
[ticket/13740] Fix is_phpbb_installed() method
PHPBB3-13740
Diffstat (limited to 'phpBB/phpbb/install/controller/install.php')
-rw-r--r-- | phpBB/phpbb/install/controller/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/controller/install.php b/phpBB/phpbb/install/controller/install.php index 469e2608a4..904f5920c2 100644 --- a/phpBB/phpbb/install/controller/install.php +++ b/phpBB/phpbb/install/controller/install.php @@ -111,7 +111,7 @@ class install { if ($this->install_helper->is_phpbb_installed()) { - throw new http_exception(404, 'PAGE_NOT_FOUND'); + die ('phpBB is already installed'); } $this->template->assign_vars(array( |