phpBB 2.0.15 has been released, and it includes a critical update!
Here's the critical bug fix:
In includes/bbcode.php
Find:
After, add:
Find:
After, Add:
More info about the rest of the changes in here:
http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=288194
And changes for modded boards here:
http://www.phpbb.com/phpBB/viewtopic.php?t=288165
Here's the critical bug fix:
In includes/bbcode.php
Find:
Code:
{
global $lang, $bbcode_tpl;
After, add:
Code:
$text = preg_replace('#(script|about|applet|activex|chrome):#is', "\\1:", $text);
Find:
Code:
*/
function make_clickable($text)
{
After, Add:
Code:
$text = preg_replace('#(script|about|applet|activex|chrome):#is', "\\1:", $text);
More info about the rest of the changes in here:
http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=288194
And changes for modded boards here:
http://www.phpbb.com/phpBB/viewtopic.php?t=288165

















