+--------------------------------------------------------------------------------+ | MyBB 1.2.6 bug fix Patch File | | (c) 2007 Luke Laupheimer | | | | This patch file fixes a minor glitch in MyBB 1.2.6 | | | | Please follow the instructions documented to manually patch your board | +--------------------------------------------------------------------------------+ ===================== 1. inc/functions.php ===================== Find: -- $setting['value'] = str_replace("\"", "\\\"", $setting['value']); -- REPLACE it with: -- $setting['value'] = preg_replace("/(\\\\*)\\\"/","$1$1\\\"",$setting['value']); -- ===================== DONE =====================