aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-10-16 14:59:39 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-10-16 14:59:39 +0000
commitaee82d3a308b8df995b4418dcbdd15b409878542 (patch)
treecc2e3c262cd133d797fa6b5b34b4ef77ef0dd8f8 /phpBB/includes/db
parent83251720de42c0207dee47961de7b93fedd05354 (diff)
downloadforums-aee82d3a308b8df995b4418dcbdd15b409878542.tar
forums-aee82d3a308b8df995b4418dcbdd15b409878542.tar.gz
forums-aee82d3a308b8df995b4418dcbdd15b409878542.tar.bz2
forums-aee82d3a308b8df995b4418dcbdd15b409878542.tar.xz
forums-aee82d3a308b8df995b4418dcbdd15b409878542.zip
MSSQL works properly with SQL update related tools
git-svn-id: file:///svn/phpbb/trunk@8198 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r--phpBB/includes/db/db_tools.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php
index 589ca39258..ee8825f136 100644
--- a/phpBB/includes/db/db_tools.php
+++ b/phpBB/includes/db/db_tools.php
@@ -500,7 +500,7 @@ class phpbb_db_tools
case 'mssql':
$sql = "SELECT c.name
FROM syscolumns c
- LEFT JOIN sysobjects o (ON c.id = o.id)
+ LEFT JOIN sysobjects o ON c.id = o.id
WHERE o.name = '{$table}'";
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))