Bug tracker
rss feed problems on special url (fix completed in vcs)
When you link to a post like this, the url in url bar doesnt work correct.
http://phpbb3bbcodes.com/viewtopic.php? ... 993#p31422
But if the link looks like this. The topic shows up in rss perfect.
http://phpbb3bbcodes.com/viewtopic.php? ... 11&start=0
Its seems strange its posible to link to a post inside a topic without mentioning the "t" in url.
Comments / History
- Code: Select all
http://phpbb3bbcodes.com/viewtopic.php?f=36&p=3993#p31422
which will never complete correctly. Try
- Code: Select all
http://phpbb3bbcodes.com/viewtopic.php?p=31422#p31422
What are the chances on this being fixed before gold ?, Found out alot of mods and portals use this way of linking to posts. Seems like the standard way.
You will get a link like this: viewtopic.php?f=46&p=11236515#p11236445
No RSS is available for this topic when you use last post image.
I think it should.
S_FORUM_ID does not have the problem because of
- Code: Select all
// We overwrite $_REQUEST['f'] if there is no forum specified
// to be able to display the correct online list.
// One downside is that the user currently viewing this topic/post is not taken into account.
if (empty($_REQUEST['f']))
{
$_REQUEST['f'] = $forum_id;
}