This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** Creates an old mysql hash compatiable with the old_password | |
function that no longer exists in mysql */ | |
function mysql_old_password($password) { | |
if ($password == '') { | |
return ''; | |
} | |
$nr = 1345345333; |