aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/module
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/install/module')
-rw-r--r--phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php2
-rw-r--r--phpBB/phpbb/install/module/requirements/module.php1
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php b/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
index 0c1146d9f5..f0e7f1f686 100644
--- a/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
+++ b/phpBB/phpbb/install/module/obtain_data/task/obtain_database_data.php
@@ -238,7 +238,7 @@ class obtain_database_data extends \phpbb\install\task_base implements \phpbb\in
$connect_test = $this->database_helper->check_database_connection($dbms, $dbhost, $dbport, $dbuser, $dbpass, $dbname, $table_prefix);
if (is_array($connect_test))
{
- foreach ($prefix_valid as $error)
+ foreach ($connect_test as $error)
{
$this->io_handler->add_error_message(
$error['title'],
diff --git a/phpBB/phpbb/install/module/requirements/module.php b/phpBB/phpbb/install/module/requirements/module.php
index d87ca15128..208cb5aad6 100644
--- a/phpBB/phpbb/install/module/requirements/module.php
+++ b/phpBB/phpbb/install/module/requirements/module.php
@@ -14,6 +14,7 @@
namespace phpbb\install\module\requirements;
use phpbb\install\exception\user_interaction_required_exception;
+use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
class module extends \phpbb\install\module_base
{