вопрос
Здравствуйте. Стоял у меня простенький модуль вывода последних комментариев на ДЛЕ 9.8, но после обновления до 10.2 стал работать как-то некорректно. Вот его код:
Проблема в том, что перестала формироваться правильно ссылка и имеет такой вид:
_http://mu_site/index.php?newsid=#comment
Все десять ссылок получаются такими одинаково кривыми. Мож кто знает в чём тут косяк?
Проблема в том, что перестала формироваться правильно ссылка и имеет такой вид:
_http://mu_site/index.php?newsid=#comment
Все десять ссылок получаются такими одинаково кривыми. Мож кто знает в чём тут косяк?
заменить
на
Или так
if ($conf_url == "yes")
на
if ($conf_url)
Или так
<?
//////////////////////////////////////////////////////////////
//=========================================================+//
//////////////////////////////////////////////////////////////
//Настроечки небольшие
$comm_num = 10; //Лимит коментариев выводимых в блоке
////////////////////////////////
//Создаем запрос к базе данных на вывод комментов
$query_comm_temp = "SELECT distinct pos.comm_num,pos.alt_name,pos.title,pos.date FROM (select distinct post_id from ".PREFIX ."_comments order by id desc limit $comm_num) com left join ".PREFIX ."_post pos on pos.id=com.post_id limit ".$comm_num;
$query_comm = $db->query($query_comm_temp);
$comment_tpl = "";
///////////////////////////////
//Выводим комментарии в цикле
while ($post = $db->get_row($query_comm))
{
$post['date'] = strtotime($post['date']);
if( $config['allow_alt_url'] ) {
if( $config['seo_type'] == 1 OR $config['seo_type'] == 2 ) {
if( $row['category'] and $config['seo_type'] == 2 ) {
$full_link = $config['http_home_url'] . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
} else {
$full_link = $config['http_home_url'] . $row['id'] . "-" . $row['alt_name'] . ".html";
}
} else {
$full_link = $config['http_home_url'] . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
}
} else {
$full_link = $config['http_home_url'] . "index.php?newsid=" . $row['id'];
}
$comment_tpl .= " <img src= {THEME}/images/ball.gif /> <a href=\"".$full_link."#comment\">".$post['title']." (".$post['comm_num'].")</a><br />";
}
$lastcomment = $comment_tpl;
?>