Quote:
Originally Posted by oO RusH Oo
$show['nopasswordempty'] = defined('DISABLE_PASSWORD_CLEARING') ? 1 : 0; // this nees to be an int for the templates[/CODE]
Are you sure this will prevent hashing of the password...?
|
$show['nopasswordempty'] = defined('DISABLE_PASSWORD_CLEARING') ? 1 : 0;
this is just seeing if DISABLE_PASSWORD_CLEARING is true, if it is it returns 1, if not it returns a 0.
what Marco said was to make it true
define('DISABLE_PASSWORD_CLEARING', true);