Quote:
Originally Posted by kh99
In includes/class_dm_user, the function fetch_user_salt() looks like this:
PHP Code:
function fetch_user_salt($length = SALT_LENGTH) { $salt = '';
for ($i = 0; $i < $length; $i++) { $salt .= chr(rand(33, 126)); } return $salt; }
and salt length is defined at the top of that file as 3. (In vb4 it's defined as 30).
|
I just figured it out by inserting that function into my plugin file (while renaming it fetch_user_salt_new), and then calling it from my plugin.
It works, thanks for your help as well!