From: Alexander Ebert Date: Thu, 3 Jan 2013 15:39:27 +0000 (+0100) Subject: Added missing support for MyBB 1.x X-Git-Tag: 2.0.0_Beta_1~584^2~1^2~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=22b62e338c52e0cd5d124f5d6174fbec6ac4eece;p=GitHub%2FWoltLab%2FWCF.git Added missing support for MyBB 1.x --- diff --git a/wcfsetup/install/files/lib/util/PasswordUtil.class.php b/wcfsetup/install/files/lib/util/PasswordUtil.class.php index 81be45a84a..4e9e2d26e5 100644 --- a/wcfsetup/install/files/lib/util/PasswordUtil.class.php +++ b/wcfsetup/install/files/lib/util/PasswordUtil.class.php @@ -25,17 +25,18 @@ final class PasswordUtil { * @var array */ private static $supportedEncryptionTypes = array( - 'ipb2', // Invision Power Board 2.x - 'ipb3', // Invision Power Board 3.x - 'smf1', // Simple Machines Forum 1.x - 'smf2', // Simple Machines Forum 2.x - 'vb3', // vBulletin 3.x - 'vb4', // vBulletin 4.x - 'vb5', // vBulletin 5.x - 'wbb2', // WoltLab Burning Board 2.x - 'wcf1', // WoltLab Community Framework 1.x - 'wcf2', // WoltLab Community Framework 2.x - 'xf1' // XenForo 1.x + 'ipb2', // Invision Power Board 2.x + 'ipb3', // Invision Power Board 3.x + 'mybb1', // MyBB 1.x + 'smf1', // Simple Machines Forum 1.x + 'smf2', // Simple Machines Forum 2.x + 'vb3', // vBulletin 3.x + 'vb4', // vBulletin 4.x + 'vb5', // vBulletin 5.x + 'wbb2', // WoltLab Burning Board 2.x + 'wcf1', // WoltLab Community Framework 1.x + 'wcf2', // WoltLab Community Framework 2.x + 'xf1' // XenForo 1.x ); /**