Skip to:
Content

bbPress.org

Ticket #3150: trac-3150-fix-password-salt.patch

File trac-3150-fix-password-salt.patch, 668 bytes (added by jrf, 7 years ago)
  • src/includes/admin/converters/phpBB.php

     
    710710
    711711        /**
    712712         * This method is to save the salt and password together.  That
    713          * way when it is authenticate it we can get it out of the database
     713         * way when it is authenticated, we can get it out of the database
    714714         * as one value.
    715715         */
    716716        public function callback_savepass( $field, $row ) {
    717717                return array(
    718718                        'hash' => $field,
    719                         'salt' => $row['salt']
     719                        'salt' => $row['user_form_salt']
    720720                );
    721721        }
    722722