Help with UberCMS 2.0 by jonty To Revcms

Panamaflow507

New Member
Apr 7, 2012
21
0
Cant you copy it ? and Jonty said the function userhash.

I used this:
witch is just final public function hashed($password) { return sha1((md5$password)); }

but it didnt work
 

Jerry

not rly active lol
Jul 8, 2013
1,956
522
Try one of these below.
PHP:
final public function hashed($password)
    {
        return md5($password);
    }
PHP:
final public function hashed($password)
    {
        return sha1($password);
    }
 

Users who are viewing this thread

Top