includes/functions_post.php, in Funktion prepare_post():
Code: Alles auswählen
// Check smilies limit
$max_smilies_allowed = 5;
if (substr_count(smilies_pass($message), '<img src="'. $board_config['smilies_path']) > $max_smilies_allowed )
{
$to_much_smilies = substr_count(smilies_pass($message), '<img src="'. $board_config['smilies_path']) - $max_smilies_allowed;
$to_many_smilies = sprintf($lang['Smilie_Alert'], $max_smilies_allowed, $to_much_smilies);
$error_msg .= ( !empty($error_msg) ) ? '<br />' . $to_many_smilies : $to_many_smilies;
}