mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 13:48:55 +00:00
- Fixes a weird bug regarding SQL parsing..
git-svn-id: file:///svn/phpbb/trunk@5554 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
81f78690db
commit
476f271aa4
1 changed files with 2 additions and 2 deletions
|
@ -1082,7 +1082,7 @@ if ($stage == 3)
|
|||
|
||||
foreach ($sql_query as $sql)
|
||||
{
|
||||
$sql = trim(str_replace('|', ';', $sql));
|
||||
//$sql = trim(str_replace('|', ';', $sql));
|
||||
if (!$db->sql_query($sql))
|
||||
{
|
||||
$error = $db->sql_error();
|
||||
|
@ -1117,7 +1117,7 @@ if ($stage == 3)
|
|||
|
||||
foreach ($sql_query as $sql)
|
||||
{
|
||||
$sql = trim(str_replace('|', ';', $sql));
|
||||
//$sql = trim(str_replace('|', ';', $sql));
|
||||
if (!$db->sql_query($sql))
|
||||
{
|
||||
$error = $db->sql_error();
|
||||
|
|
Loading…
Add table
Reference in a new issue