Kunena1::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. Array values are auto sanitized by WordPress.
Description
Source
File: bp-forums/admin/converters/Kunena1.php
public function callback_savepass($field, $row) { $pass_array = array('hash' => $field, 'salt' => $row['salt']); return $pass_array; }
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.