Bug #22588 ยป 14307.diff
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
|