|
17.03.2006, 02:34
добавьте еще переменные в вызов функции themeindex() в modules/News/index.php и в саму функцию в theme.php
Т.е. смотрите все определения переменной $morelink и переделываете их в другие, например:
В замен:
PHP код:
$morelink .= "$story_link<b>"._READMORE."</b></a> | "; } else { $morelink .= "";
Пишим:
PHP код:
$link = "$story_link<b>"._READMORE."</b></a> | "; } else { $link = "";
и уже в
PHP код:
themeindex($aid, $informant, $datetime, $title, $counter, $topic, $hometext, $notes, $morelink, $topicname, $topicimage, $topictext);
добавляем переменную $link
PHP код:
themeindex($aid, $informant, $datetime, $title, $counter, $topic, $hometext, $notes, $morelink, $topicname, $topicimage, $topictext, $link);
аналогично и в theme.php
а там уже обрабатываете эту переменную как вам надо и т.д.
|
|