Файл: concrete5.7.5.6/concrete/mail/private_message_admin_warning.php
Строк: 29
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$subject = t('Private message limit exceeded for user: %s on %s', $offenderUname, $siteName);
$body = t("User: %s has tried to send more than %s private messages within %s minutes", $offenderUname, Config::get('concrete.user.private_messages.throttle_max'), Config::get('concrete.user.private_messages.throttle_max_timespan'));
$body .= "nn";
$body .= t("This behavior is typically an indication of someone spamming your site, you may want to take a closer look at this users activity and possibly disable or delete this user account.");
$body .= "nn";
$body .= t("To view this user's profile, visit: %s", $profileURL);