Quote:
Originally Posted by Stoebi
Hi,
I've a problem if I change the number of random smilies to show on the shoutbox.
With the default settings (0) I've no problems, but if i change the value i get smilies twice if I hit the smiley button. In my example I've changed 0 to 8 and it will show 2 or 3 same smilies from 8.
PHP Code:
if ($vbulletin->options['shout_smilies_show'] > 0)
{
while ($Used < $vbulletin->options['shout_smilies_show'])
{
$GetEmo = $Total_Smilies;
$GetEmo = rand(0, $GetEmo);
if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
{
$Used++;
$GetEmo = $Smilie_Cache[$GetEmo];
$Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
}
}
}
I think the problem is the random line -> $GetEmo = rand(0, $GetEmo);
Is there somebody which can help to improve this, please?
Regards, Stoebi
Edit:
Solved. Many thx to Boothby from vbhacks-germany.com
|
Hi @all
I have the same problem..
So how can we solve the problem?
greetz