mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-29 13:00:26 +02: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:
@@ -912,7 +912,7 @@ class install_install extends module
|
|||||||
if (!$db->sql_query($sql))
|
if (!$db->sql_query($sql))
|
||||||
{
|
{
|
||||||
$error = $db->sql_error();
|
$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);
|
unset($sql_query);
|
||||||
@@ -1036,7 +1036,7 @@ class install_install extends module
|
|||||||
if (!$db->sql_query($sql))
|
if (!$db->sql_query($sql))
|
||||||
{
|
{
|
||||||
$error = $db->sql_error();
|
$error = $db->sql_error();
|
||||||
inst_db_error($error['message'], $sql, __LINE__, __FILE__);
|
$this->p_master->db_error($error['message'], $sql, __LINE__, __FILE__);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user