Project

General

Profile

Bug #22588 ยป 14307.diff

Administrator Admin, 2010-05-04 23:47

View differences:

t3lib/class.t3lib_befunc.php (working copy)
}
break;
}
// If this field is a password field, then hide the password by changing it to a random number of asterisk (*)
if (stristr($theColConf['eval'], 'password')) {
unset($l);
$randomNumber = rand(5, 12);
for ($i=0; $i < $randomNumber; $i++) {
$l .= chr(42);
}
}
/*****************
*HOOK: post-processing the human readable output from a record
    (1-1/1)