-
Bug
-
Resolution: Duplicate
-
Minor
-
None
-
None
-
None
search.php:821
'S_USER_POSTED' => (!empty($row['mark_type'])) ? true : false,
|
This should be something like:
'S_USER_POSTED' => (isset($row['topic_posted']) && $row['topic_posted']) ? true : false,
|
Current template variable seems to be always false. This is also a problem in 3.0.x IIRC.
- duplicates
-
PHPBB-9754 Template variable S_USER_POSTED always set to false in search.php
- Closed