From 22b62e338c52e0cd5d124f5d6174fbec6ac4eece Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 3 Jan 2013 16:39:27 +0100 Subject: [PATCH] Added missing support for MyBB 1.x --- .../files/lib/util/PasswordUtil.class.php | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) 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 ); /** -- 2.20.1