aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/mysql.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-04 21:22:33 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-04 21:22:33 -0500
commit89c9c9d4b0daa7308fd015e8a6fca6386a8b8016 (patch)
treee60e0c3bdf542d99dba9cd1184eb167b7eefc37d /phpBB/includes/db/mysql.php
parent29c4da6162902d3c0d766a8acb17e5a2cf02f901 (diff)
downloadforums-89c9c9d4b0daa7308fd015e8a6fca6386a8b8016.tar
forums-89c9c9d4b0daa7308fd015e8a6fca6386a8b8016.tar.gz
forums-89c9c9d4b0daa7308fd015e8a6fca6386a8b8016.tar.bz2
forums-89c9c9d4b0daa7308fd015e8a6fca6386a8b8016.tar.xz
forums-89c9c9d4b0daa7308fd015e8a6fca6386a8b8016.zip
[ticket/10205] Cosmetic changes.
PHPBB3-10205
Diffstat (limited to 'phpBB/includes/db/mysql.php')
-rw-r--r--phpBB/includes/db/mysql.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php
index 7314e92087..0125be0917 100644
--- a/phpBB/includes/db/mysql.php
+++ b/phpBB/includes/db/mysql.php
@@ -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),
);
}