Guest User

Untitled

a guest
Apr 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. 12d11
  2. <
  3. 838a838,845
  4. > if ($title == '') {
  5. > $sql = "SELECT topic_title FROM " . TOPICS_TABLE . " where (topic_id = " . $topic_id . ")";
  6. > $result = $db->sql_query($sql);
  7. > if ($row = $db->sql_fetchrow($result)) {
  8. > $title = 'Re: '.$row['topic_title'];
  9. > }
  10. > $db->sql_freeresult($result);
  11. > }
  12. 1653a1661
  13. >
  14. 1762c1770
  15. < if (!($forum_data['forum_type'] == FORUM_POST || (($forum_data['forum_flags'] & FORUM_FLAG_ACTIVE_TOPICS) && $forum_data['forum_type'] == FORUM_CAT))) {
  16. ---
  17. > if (!($forum_data['forum_type'] == FORUM_POST || (($forum_data['forum_flags'] && FORUM_FLAG_ACTIVE_TOPICS) && $forum_data['forum_type'] == FORUM_CAT))) {
Add Comment
Please, Sign In to add comment