From fee3ec305cfc0dc7799fd7c85a7674052a4cb741 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Thu, 20 Apr 2006 15:10:27 +0000 Subject: [PATCH] Fix a couple of references to the old error handler git-svn-id: file:///svn/phpbb/trunk@5809 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/install_install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index ffc42e597f..0d730a5273 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -912,7 +912,7 @@ class install_install extends module if (!$db->sql_query($sql)) { $error = $db->sql_error(); - inst_db_error($error['message'], $sql, __LINE__, __FILE__); + $this->p_master->db_error($error['message'], $sql, __LINE__, __FILE__); } } unset($sql_query); @@ -1036,7 +1036,7 @@ class install_install extends module if (!$db->sql_query($sql)) { $error = $db->sql_error(); - inst_db_error($error['message'], $sql, __LINE__, __FILE__); + $this->p_master->db_error($error['message'], $sql, __LINE__, __FILE__); } }