aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-11-14 17:12:07 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-11-14 17:12:07 +0000
commitd4d1307e1546393b40eeda8d762a6663d831a882 (patch)
treec6053d736e983598fdfe1f5de42e24efce1a313d /phpBB/viewforum.php
parentd62c5a6fcd06605087b5084beb897798fbf11ec9 (diff)
downloadforums-d4d1307e1546393b40eeda8d762a6663d831a882.tar
forums-d4d1307e1546393b40eeda8d762a6663d831a882.tar.gz
forums-d4d1307e1546393b40eeda8d762a6663d831a882.tar.bz2
forums-d4d1307e1546393b40eeda8d762a6663d831a882.tar.xz
forums-d4d1307e1546393b40eeda8d762a6663d831a882.zip
- letting urls work again, fixing [code] breakage on urls, corrected magic_url to be able to parse urls at the beginning/end of bbcode blocks
- fixed "edited by" message. git-svn-id: file:///svn/phpbb/trunk@5027 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php32
1 files changed, 1 insertions, 31 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 95d9f52979..7b219f8490 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -476,37 +476,7 @@ if ($forum_data['forum_type'] == FORUM_POST || ($forum_data['forum_flags'] & 16)
{
$mark_forum_read = false;
}
-/*
- if ($config['load_db_lastread'])
- {
- if ((isset($row['mark_time']) && $row['topic_last_post_time'] > $row['mark_time']) || (empty($row['mark_time']) && $row['topic_last_post_time'] > $forum_data['mark_time']))
- {
- // sync post/topic marking
- if (isset($unread_topc) && !$unread_topic && !empty($row['mark_time']) && $row['mark_time'])
- {
- markread('topic', $forum_id, $topic_id);
- }
- else
- {
- $mark_forum_read = false;
- }
- }
- }
- else
- {
- if (($mark_time_topic && $row['topic_last_post_time'] > $mark_time_topic) || (!$mark_time_topic && $mark_time_forum && $row['topic_last_post_time'] > $mark_time_forum))
- {
- if (isset($unread_topic) && !$unread_topic && !empty($row['mark_time']) && $mark_time_topic)
- {
- markread('topic', $forum_id, $topic_id);
- }
- else
- {
- $mark_forum_read = false;
- }
- }
- }
-*/
+
unset($rowset[$topic_id]);
}
}