False positive : The statement 'while' must contain its code within a {} block.
Brought to you by:
hkodungallur,
tchule
Originally created by: tch...@hotmail.com
Originally owned by: tch...@hotmail.com
Do / While statement incorrectly detected.
function genereSalt($max = 15) {
$characterList = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$i = 0;
$salt = "";
do {
$salt .= $characterList[mt_rand(0, strlen($characterList)-1)];
$i++;
} while ($i < $max);
return $salt;
}
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: tch...@hotmail.com
(No comment was entered for this change.)
Status: Fixed