1. открыть /engine/modules/addnews.php и найти:
if(trim($short_story) == "" or !$short_story) $stop .= $lang['add_err_5'];
добавить:
if($full_story <>""){
$full_story_hide = $full_story;
$full_story_hide = preg_replace("'(.*?)[hide]'si","",$full_story_hide);
if($full_story_hide == $full_story) $stop .= $lang['add_err_10'];
}
$full_story_hide = $full_story;
$full_story_hide = preg_replace("'(.*?)[hide]'si","",$full_story_hide);
if($full_story_hide == $full_story) $stop .= $lang['add_err_10'];
}
2. открыть /language/Russian/website.lng и найти:
Внимание! У вас нет прав для просмотра скрытого текста.
добавить:
'add_err_10' => "У вашей статьи, в полной версии, должны быть внешние ссылки убраны, в теги [hide] ссылка [/hide]",