git-svn-id: file:///svn/phpbb/trunk@7888 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-07-15 12:57:30 +00:00
parent c0c424a564
commit 86de92d8f0
2 changed files with 2 additions and 1 deletions

View file

@ -235,6 +235,7 @@ p a {
<li>[Fix] Fixed bug in realpath replacement letting it actually work again</li> <li>[Fix] Fixed bug in realpath replacement letting it actually work again</li>
<li>[Change] Try to be a bit more specific regarding global/local permission trace (Bug #11032)</li> <li>[Change] Try to be a bit more specific regarding global/local permission trace (Bug #11032)</li>
<li>[Fix] Fixed some strangeness in password validation due to mb_ereg()</li> <li>[Fix] Fixed some strangeness in password validation due to mb_ereg()</li>
<li>[Fix] Subforums of a forum would overwrite the latest post information even if they did not contain the latest post (Bug #11931)</li>
</ul> </ul>

View file

@ -216,7 +216,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod
$forum_rows[$parent_id]['forum_last_poster_colour'] = $row['forum_last_poster_colour']; $forum_rows[$parent_id]['forum_last_poster_colour'] = $row['forum_last_poster_colour'];
$forum_rows[$parent_id]['forum_id_last_post'] = $forum_id; $forum_rows[$parent_id]['forum_id_last_post'] = $forum_id;
} }
else else if (!isset($forum_rows[$parent_id]['forum_id_last_post']))
{ {
$forum_rows[$parent_id]['forum_id_last_post'] = $forum_id; $forum_rows[$parent_id]['forum_id_last_post'] = $forum_id;
} }