+--------------------------------------------------------------------------------+ | MyBB 1.4.3 - Security Update Patch File | | (c) 2008 MyBB Group. | | | | This patch file fixes a low risk issues in MyBB 1.4.3 | | | | Please follow the instructions documented to manually patch your board. | +--------------------------------------------------------------------------------+ =============== 1. moderation.php =============== Find: -- // Begin! switch($mybb->input['action']) { -- ADD BEFORE: -- if($mybb->request_method != "post" && $mybb->input['action'] != "getip") { error_no_permission(); } -- =============== 2. (If you are not planning to run the upgrade procedure:) For each of your template sets under the "showthread_moderationoptions" template =============== Find: --
-- Replace with: -- -- Also Find: -- -- =============== 3. inc/class_core.php (Version number change) =============== Find: -- /** * The friendly version number of MyBB we're running. * * @var string */ var $version = "1.4.3"; /** * The version code of MyBB we're running. * * @var integer */ var $version_code = 1403; -- Replace with: -- /** * The friendly version number of MyBB we're running. * * @var string */ var $version = "1.4.4"; /** * The version code of MyBB we're running. * * @var integer */ var $version_code = 1404; -- ALL DONE