diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 13:11:21 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 13:11:21 +0200 |
commit | e51e7701cd01316dc926bc4becb279da1210e725 (patch) | |
tree | 98d78fc4bc3ec6e99d98c114240fb8645c46f0af /phpBB | |
parent | fecca4ef21e15673c4d3fff27e528afbee127a91 (diff) | |
parent | 843d6e53fb7fe234878b5022dae133fb32b84a86 (diff) | |
download | forums-e51e7701cd01316dc926bc4becb279da1210e725.tar forums-e51e7701cd01316dc926bc4becb279da1210e725.tar.gz forums-e51e7701cd01316dc926bc4becb279da1210e725.tar.bz2 forums-e51e7701cd01316dc926bc4becb279da1210e725.tar.xz forums-e51e7701cd01316dc926bc4becb279da1210e725.zip |
Merge branch 'ticket/bantu/9754' into develop-olympus
* ticket/bantu/9754:
[ticket/9754] Populate S_USER_POSTED variable with correct value in search.php
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 96f320fe9f..9e54820c25 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -892,7 +892,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'S_TOPIC_GLOBAL' => (!$forum_id) ? true : false, 'S_TOPIC_TYPE' => $row['topic_type'], - 'S_USER_POSTED' => (!empty($row['mark_type'])) ? true : false, + 'S_USER_POSTED' => (!empty($row['topic_posted'])) ? true : false, 'S_UNREAD_TOPIC' => $unread_topic, 'S_TOPIC_REPORTED' => (!empty($row['topic_reported']) && $auth->acl_get('m_report', $forum_id)) ? true : false, |