1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10205] Cosmetic changes.

PHPBB3-10205
This commit is contained in:
Oleg Pudeyev
2012-12-04 21:22:33 -05:00
parent 29c4da6162
commit 89c9c9d4b0
6 changed files with 10 additions and 9 deletions

View File

@@ -443,7 +443,7 @@ class dbal_mysql extends dbal
{
return array(
'message' => @mysql_error(),
'code' => @mysql_errno()
'code' => @mysql_errno(),
);
}
else
@@ -457,7 +457,7 @@ class dbal_mysql extends dbal
return array(
'message' => @mysql_error($this->db_connect_id),
'code' => @mysql_errno($this->db_connect_id)
'code' => @mysql_errno($this->db_connect_id),
);
}