I recommend to update your forum as soon as possible. For more information and download link click here.
All styles and mod for phpBB 2.0.12 are compatible with phpBB 2.0.13
Two changes that require immediate fixing.
1. Open includes/sessions.php, find this:
- Code: Select all
if( $sessiondata['autologinid'] == $auto_login_key )
- Code: Select all
if( $sessiondata['autologinid'] === $auto_login_key )
2. Open viewtopic.php, find this:
- Code: Select all
$message = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace('#\b(" . $highlight_match . ")\b#i', '<span style=\"color:#" . $theme['fontcolor3'] . "\"><b>\\\\1</b></span>', '\\0')", '>' . $message . '<'), 1, -1));
- Code: Select all
$message = str_replace('\"', '"', substr(@preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "@preg_replace('#\b(" . $highlight_match . ")\b#i', '<span style=\"color:#" . $theme['fontcolor3'] . "\"><b>\\\\1</b></span>', '\\0')", '>' . $message . '<'), 1, -1));

