aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-08-01 22:03:51 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-08-01 22:03:51 +0000
commit8b85a84d554e2cee28b219f67d6b79c27f5e7e76 (patch)
treed6978f5faaa81b4bb616788c81991a096a24369d
parent2a6c0cf41b6a6ef616eaafcf71fedc4fe9596154 (diff)
downloadforums-8b85a84d554e2cee28b219f67d6b79c27f5e7e76.tar
forums-8b85a84d554e2cee28b219f67d6b79c27f5e7e76.tar.gz
forums-8b85a84d554e2cee28b219f67d6b79c27f5e7e76.tar.bz2
forums-8b85a84d554e2cee28b219f67d6b79c27f5e7e76.tar.xz
forums-8b85a84d554e2cee28b219f67d6b79c27f5e7e76.zip
- remove user_karma reference.
git-svn-id: file:///svn/phpbb/trunk@4949 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/functions_posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 4ab2a13157..9edca24ff2 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -935,7 +935,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
global $config, $phpbb_root_path, $phpEx, $SID;
// Go ahead and pull all data for this topic
- $sql = 'SELECT u.username, u.user_id, u.user_karma, p.post_id, p.post_username, p.post_subject, p.post_text, p.enable_smilies, p.bbcode_uid, p.bbcode_bitfield, p.post_time
+ $sql = 'SELECT u.username, u.user_id, p.post_id, p.post_username, p.post_subject, p.post_text, p.enable_smilies, p.bbcode_uid, p.bbcode_bitfield, p.post_time
FROM ' . POSTS_TABLE . ' p, ' . USERS_TABLE . " u
WHERE p.topic_id = $topic_id
AND p.poster_id = u.user_id