diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-04-20 15:10:27 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-04-20 15:10:27 +0000 |
| commit | fee3ec305cfc0dc7799fd7c85a7674052a4cb741 (patch) | |
| tree | ed1f8d4064f012d069e5bf7c11c263a810ae353a /phpBB/install | |
| parent | 32e738031d64488df3dafcc61614ca0432af8c83 (diff) | |
| download | forums-fee3ec305cfc0dc7799fd7c85a7674052a4cb741.tar forums-fee3ec305cfc0dc7799fd7c85a7674052a4cb741.tar.gz forums-fee3ec305cfc0dc7799fd7c85a7674052a4cb741.tar.bz2 forums-fee3ec305cfc0dc7799fd7c85a7674052a4cb741.tar.xz forums-fee3ec305cfc0dc7799fd7c85a7674052a4cb741.zip | |
Fix a couple of references to the old error handler
git-svn-id: file:///svn/phpbb/trunk@5809 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rwxr-xr-x | phpBB/install/install_install.php | 4 |
1 files 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__); } } |
