diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 15:01:17 +0200 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 15:01:17 +0200 |
| commit | 3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582 (patch) | |
| tree | 3c9514c745f19dd2874cfd01978e4654aaa084b1 /phpBB/search.php | |
| parent | c0d645c319b0bc7c83181d153c026cba052f9306 (diff) | |
| parent | 161be96c661651edad16ccfd946c530626c8aacb (diff) | |
| download | forums-3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582.tar forums-3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582.tar.gz forums-3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582.tar.bz2 forums-3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582.tar.xz forums-3e8d45910dce4f6e6dcdf8103bda8c3ce1b5b582.zip | |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/9754] Populate S_USER_POSTED variable with correct value in search.php
[ticket/9748] Replace <br /> before converting < and > to their entities.
[ticket/9503] Show 'No subject specified' in 'Posts awaiting approval'.
Diffstat (limited to 'phpBB/search.php')
| -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, |
