mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fix a couple of references to the old error handler
git-svn-id: file:///svn/phpbb/trunk@5809 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
32e738031d
commit
fee3ec305c
1 changed files with 2 additions and 2 deletions
|
@ -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__);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue