Parapsixolog пишет:Единственное заметил, что если из любой темы переходишь на главную страницу к УРЛ добавляются слэши:
В мозиле -
В IE:
Это происходит, я так понял, от работы файла - \modules\rewrite\_pageTail.php
(Добавление)
Было:
CODE:$sub_lastpost = (strlen($allforums[$subid]['last_post']) > 16) ? substr($allforums[$subid]['last_post'], 0, 15).'...' : $allforums[$subid]['last_post'];
$sub_lastpost = ($fm->user['id'] && ($fm->exbb['watches'] && $_watchesIndex[$subid][1] || !$fm->exbb['watches'] && ($fm->user['last_visit'] < $allforums[$subid]['last_key'] && $fm->user['id'] != $allforums[$subid]['last_poster_id'] && ((!isset($t_visits[$subid.':'.$allforums[$subid]['last_post_id']]) || $t_visits[$subid.':'.$allforums[$subid]['last_post_id']] < $allforums[$subid]['last_key'])))) ?
'<a href="topic.php?forum='.$subid.'&topic='.$allforums[$subid]['last_post_id'].'&v=u#unread" title="'.$fm->LANG['GoToFirstUnread'].'"><img src="./templates/'.DEF_SKIN.'/im/unread.gif" border="0" /></a> ' : '') .
'<a href="topic.php?forum='.$subid.'&topic='.$allforums[$subid]['last_post_id'].'&v=l#'.$allforums[$subid]['last_key'].'" title="'.$allforums[$subid]['last_post'].'">'.$sub_lastpost.'</a>';
if ($fm->exbb['show_hints']) $sub_lastpost = '<span class="hint">'.$sub_lastpost.'</span>';
}
$subinfo = ' '.sprintf($fm->LANG['SubInfo'], $allforums[$subid]['topics'], $allforums[$subid]['posts'], $sub_lastpost);
}
$sub[] = '<a href="forums.php?forum='.$subid.'" class="'.$folderpicture.'">'.$subname.'</a>'.$subinfo;
}
$sub = ($sub) ? sprintf($fm->LANG['Subforums'], '<br>'.implode('<br>', $sub).'<br>') : '';
// Сколько человек просматривают этот форум?
Стало:
CODE:$sub_lastpost = (strlen($allforums[$subid]['last_post']) > 16) ? substr($allforums[$subid]['last_post'], 0, 15).'...' : $allforums[$subid]['last_post'];
$sub_lastpost = ($fm->user['id'] && (!empty($fm->exbb['watches']) && $_watchesIndex[$subid][1] || empty($fm->exbb['watches']) && ($fm->user['last_visit'] < $allforums[$subid]['last_key'] && $fm->user['id'] != $allforums[$subid]['last_poster_id'] && ((!isset($t_visits[$subid.':'.$allforums[$subid]['last_post_id']]) || $t_visits[$subid.':'.$allforums[$subid]['last_post_id']] < $allforums[$subid]['last_key'])))) ?
'<a href="topic.php?forum='.$subid.'&topic='.$allforums[$subid]['last_post_id'].'&v=u#unread" title="'.$fm->LANG['GoToFirstUnread'].'"><img src="./templates/'.DEF_SKIN.'/im/unread.gif" border="0" /></a> ' : '') .
'<a href="' . _rewriteTopicUrl($subid, $allforums[$subid]['last_post_id'], '', $allforums[$subid]['last_key']) . '" title="'.$allforums[$subid]['last_post'].'">'.$sub_lastpost.'</a>';
if ($fm->exbb['show_hints']) $sub_lastpost = '<span class="hint f'.$subid.'t'.$allforums[$subid]['last_post_id'].'">'.$sub_lastpost.'</span>';
}
$subinfo = ' '.sprintf($fm->LANG['SubInfo'], $allforums[$subid]['topics'], $allforums[$subid]['posts'], $sub_lastpost);
}
$sub[] = '<a href="forums.php?forum='.$subid.'" class="'.$folderpicture.'">'.$subname.'</a>'.$subinfo;
}
$sub = ($sub) ? sprintf($fm->LANG['Subforums'], '<br>'.implode('<br>', $sub).'<br>') : '';
// Сколько человек просматривают этот форум?
(Добавление)
Было:
CODE:$LastTopicName = (strlen($forum['last_post'])>36) ? substr($forum['last_post'],0,35).'...':$forum['last_post'];
$LastTopicName = ($fm->user['id'] && ($fm->exbb['watches'] && $_watchesIndex[$id][1] || !$fm->exbb['watches'] && ($fm->user['last_visit'] < $forum['last_key'] && $fm->user['id'] != $forum['last_poster_id'] && ((!isset($t_visits[$id.':'.$forum['last_post_id']]) || $t_visits[$id.':'.$forum['last_post_id']] < $forum['last_key'])))) ?'<a href="topic.php?forum='.$id.'&topic='.$forum['last_post_id'].'&v=u#unread" title="'.$fm->LANG['GoToFirstUnread'].'"><img src="./templates/'.DEF_SKIN.'/im/unread.gif" border="0" /></a> ' : '<img src="./templates/'.DEF_SKIN.'/im/lastpost.gif"> ') .
($fm->exbb['show_hints'] ? '<span class="hint">' : '').'<a href="topic.php?forum='.$id.'&topic='.$forum['last_post_id'].'&v=l#'.$forum['last_key'].'" title="'.$forum['last_post'].'">'.$LastTopicName.'</a>'.($fm->exbb['show_hints'] ? '</span>' : '');
$LastPosterName = ($forum['last_poster_id'] !== 0) ? $fm->LANG['Author'].': <a href="profile.php?action=show&member='.$forum['last_poster_id'].'">'.$forum['last_poster'].'</a>' : $fm->LANG['Author'].': '.$fm->LANG['Guest'];
}
$lastcat = $forum['catid'];
$last = (!isset($allforums_keys[$key+1]) || $allforums[$allforums_keys[$key+1]]['catid'] != $forum['catid'] ) ? true : false;
include ('./templates/'.DEF_SKIN.'/board_data.tpl');
}
// СКРЫТЫЙ РЕЖИМ ПРЕБЫВАНИЯ НА ФОРУМЕ //
Стало:
CODE:$LastTopicName = (strlen($forum['last_post'])>36) ? substr($forum['last_post'],0,35).'...':$forum['last_post'];
$LastTopicName = ($fm->user['id'] && (!empty($fm->exbb['watches']) && $_watchesIndex[$id][1] || empty($fm->exbb['watches']) && ($fm->user['last_visit'] < $forum['last_key'] && $fm->user['id'] != $forum['last_poster_id'] && ((!isset($t_visits[$id.':'.$forum['last_post_id']]) || $t_visits[$id.':'.$forum['last_post_id']] < $forum['last_key'])))) ?
'<a href="topic.php?forum='.$id.'&topic='.$forum['last_post_id'].'&v=u#unread" title="'.$fm->LANG['GoToFirstUnread'].'"><img src="./templates/'.DEF_SKIN.'/im/unread.gif" border="0" /></a> ' : '<img src="./templates/'.DEF_SKIN.'/im/lastpost.gif"> ') .
($fm->exbb['show_hints'] ? '<span class="hint f'.$id.'t'.$forum['last_post_id'].'">' : '').'<a href="' . _rewriteTopicUrl($id, $forum['last_post_id'], '', $forum['last_key']) . '" title="'.$forum['last_post'].'">'.$LastTopicName.'</a>'.($fm->exbb['show_hints'] ? '</span>' : '');
$LastPosterName = ($forum['last_poster_id'] !== 0) ? $fm->LANG['Author'].': <a href="profile.php?action=show&member='.$forum['last_poster_id'].'">'.$forum['last_poster'].'</a>' : $fm->LANG['Author'].': '.$fm->LANG['Guest'];
}
$lastcat = $forum['catid'];
$last = (!isset($allforums_keys[$key+1]) || $allforums[$allforums_keys[$key+1]]['catid'] != $forum['catid'] ) ? true : false;
include ('./templates/'.DEF_SKIN.'/board_data.tpl');
}
// СКРЫТЫЙ РЕЖИМ ПРЕБЫВАНИЯ НА ФОРУМЕ //