Uploaded image for project: 'phpBB'
  1. phpBB
  2. PHPBB-7902

Problem with S_USER_POSTED in search.php

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Minor Minor
    • None
    • None
    • Other
    • 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.

            bantu Andreas Fischer [X] (Inactive)
            BartVB BartVB [X] (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: