aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-01-10 16:47:16 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-01-10 16:47:16 +0000
commitb621bb66c50e534086226df89e5c0764535f5832 (patch)
treec180852586715d81d37537de19f4eada8be1fa9b /phpBB/docs/coding-guidelines.html
parent31ee257ab8232072676df0d4d354ff7a5a0b1416 (diff)
downloadforums-b621bb66c50e534086226df89e5c0764535f5832.tar
forums-b621bb66c50e534086226df89e5c0764535f5832.tar.gz
forums-b621bb66c50e534086226df89e5c0764535f5832.tar.bz2
forums-b621bb66c50e534086226df89e5c0764535f5832.tar.xz
forums-b621bb66c50e534086226df89e5c0764535f5832.zip
fix some general bugs and some convertor related
git-svn-id: file:///svn/phpbb/trunk@6872 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 33b2bb6b8d..0549671b95 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -862,7 +862,7 @@ $sql_array = array(
'FROM' => array(FORUMS_TRACK_TABLE => 'ft'),
'ON' => 'ft.user_id = ' . $user->data['user_id'] . ' AND ft.forum_id = f.forum_id'
)
- );
+ ),
'WHERE' => 'fw.user_id = ' . $user->data['user_id'] . '
AND f.forum_id = fw.forum_id',