mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-29 19:20:23 +02:00
- 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
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user