Новости
Искатель

:
Новости
30 Июля 2013как можно сделать чтоб на главной не полный текст выходил новостей...
Angelok0803
30 Июля 2013Заходишь в /sys/fnc/output_text.php
Вставляешь туда
function rez_text4( $text, $maxwords = 70, $maxchar = 250 ){
$sep=' ';
$sep2=' »';
$words = explode($sep,$text);
$char = iconv_strlen($text,'utf-8');
if (count($words) > $maxwords){
$text = join($sep, array_slice($words, 0, $maxwords));
}
if ( $char > $maxchar ){
$text = iconv_substr( $text, 0, $maxchar, 'utf-8' );
}
return $text.$sep2;
}
Затем переходишь в /sys/inc/news_main.php
И там пишешь Вместо
echo output_text($news['msg']).'<br />';
Вставляешь это
echo rez_text4(output_text($news['msg'])).'<br />';
DCMS-Social.ru - движок социальной сети, вап и веб мастерская, файло-обменник и форум.