phpBB::callback_savepass( $field, $row )
This method is to save the salt and password together. That way when we authenticate it we can get it out of the database as one value.
Contents
Description Description
Source Source
File: includes/admin/converters/phpBB.php
public function callback_savepass( $field, $row ) { return array( 'hash' => $field, 'salt' => $row['user_form_salt'] ); }