Added missing support for MyBB 1.x
authorAlexander Ebert <ebert@woltlab.com>
Thu, 3 Jan 2013 15:39:27 +0000 (16:39 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 3 Jan 2013 15:39:27 +0000 (16:39 +0100)
wcfsetup/install/files/lib/util/PasswordUtil.class.php

index 81be45a84aa1a6cb8f5bd8aeb596ecf2dd64c322..4e9e2d26e5cef442357001ad794243bc52fef5c6 100644 (file)
@@ -25,17 +25,18 @@ final class PasswordUtil {
         * @var array<string>
         */
        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
        );
        
        /**