aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-04-20 15:10:27 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-04-20 15:10:27 +0000
commitfee3ec305cfc0dc7799fd7c85a7674052a4cb741 (patch)
treeed1f8d4064f012d069e5bf7c11c263a810ae353a /phpBB/install
parent32e738031d64488df3dafcc61614ca0432af8c83 (diff)
downloadforums-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-xphpBB/install/install_install.php4
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__);
}
}