phpBB 2.0.13 released

主要修正 2.0.12 的兩個錯誤, 引用自 官方公告 :

  • includes/sessions.php 修正 :
    if( $sessiondata["autologinid"] == $auto_login_key )

    改為

    if( $sessiondata["autologinid"] === $auto_login_key )
  • viewtopic.php 修正 :
    $message = str_replace(""", """, substr(preg_replace("#(\>(((?>([^>< ]+|(?R)))*)\<))#se", "preg_replace("#\b(" . $highlight_match . ")\b#i", "<span style="color:#" . $theme["fontcolor3"] . ""><b>\1</b>", "\0")", ">" . $message . "< "), 1, -1));

    改為

    $message = str_replace(""", """, substr(@preg_replace("#(\>(((?>([^>< ]+|(?R)))*)\<))#se", "@preg_replace("#\b(" . $highlight_match . ")\b#i", "<span style="color:#" . $theme["fontcolor3"] . ""><b>\1</b>", "\0")", ">" . $message . "< "), 1, -1));

另外也可以參閱 竹貓星球[公告] phpBB 2.0.13 正式釋出(安全性更新) .