+--------------------------------------------------------------------------------+ | MyBB 1.1.3 to 1.1.4 Patch File | | (c) 2006 MyBB Group. | | | | This patch file fixes a security issue in regards to MyBB 1.1.3 | | | | Please follow the instructions documented to manually patch your board | | to MyBB 1.1.4 | +--------------------------------------------------------------------------------+ -------------- 1. usercp.php -------------- Find: -- if($mybb->input['showcodebuttons'] != 1) { $mybb->input['showcodebuttons'] = 0; } -- Replace with: -- if($mybb->input['showcodebuttons'] != '1') { $mybb->input['showcodebuttons'] = 0; } -- -------------- 2. inc/functions.php (Optional - Version number change) -------------- Find: -- $mybboard['internalver'] = "1.1.3"; $mybboard['vercode'] = "113"; -- Replace with: -- $mybboard['internalver'] = "1.1.4"; $mybboard['vercode'] = "114"; -- DONE.