Ticket #3150: trac-3150-fix-password-salt.patch
File trac-3150-fix-password-salt.patch, 668 bytes (added by , 7 years ago) |
---|
-
src/includes/admin/converters/phpBB.php
710 710 711 711 /** 712 712 * This method is to save the salt and password together. That 713 * way when it is authenticate itwe can get it out of the database713 * way when it is authenticated, we can get it out of the database 714 714 * as one value. 715 715 */ 716 716 public function callback_savepass( $field, $row ) { 717 717 return array( 718 718 'hash' => $field, 719 'salt' => $row[' salt']719 'salt' => $row['user_form_salt'] 720 720 ); 721 721 } 722 722