W shoutbox_view.php skasuj:
[php]$current_time = time();
$sql = "SELECT MAX(timestamp) AS last_msg_time
FROM " . SHOUTBOX_TABLE . "
WHERE sb_user_id = $sb_user_id";
if ( $result = $db->sql_query($sql) )
{
if ( $row = $db->sql_fetchrow($result) )
{
if ( $row['last_msg_time'] > 0 && ( $current_time - $row['last_msg_time'] ) < $board_config['flood_interval'] )
{
$flood_msg = true;
echo '<body onload="window.scrollTo(0,0);" />
<table align="center"><tr><td align="left"><span class="gensmall">
' . $lang['Flood_Error'] . '</span></td></tr></table>';
}
}
}[/php]
Autor postu otrzymał pochwałę
Pomocy nt. forum lub/i php udzielam tylko na forum.