Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-8086 now.

viewonline.php not supporting _ in file name (fix completed in vcs)

through the code in the viewonline.php is
Code: Select all
preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
the switch case won't work for files including a _. This is not the case on phpbb itself, but on some mods. This could be easily fixed by adding the _ to the preg_match
Code: Select all
preg_match('#^([a-z/_]+)#i', $row['session_page'], $on_page);

Comments / History

Linked ticket with changeset: r9428

Action performed by Anonymous (I am too lazy to register) on Apr 8th 2009, 17:33

Changed ticket status from "New" to "Fix completed in SVN"

Action performed by Acyd Burn (Server Manager) on Apr 8th 2009, 17:33

Ticket details

Related SVN changesets