diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-29 18:17:14 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-29 18:17:14 +0000 |
commit | a474e1481d88562bec729a64760540a0a456629b (patch) | |
tree | ec69406d38fa533dd2de611eed2cb9622b95523b /phpBB/search.php | |
parent | 2c282ebdc26c3395f64c86e36ce53e96ff70dc3c (diff) | |
download | forums-a474e1481d88562bec729a64760540a0a456629b.tar forums-a474e1481d88562bec729a64760540a0a456629b.tar.gz forums-a474e1481d88562bec729a64760540a0a456629b.tar.bz2 forums-a474e1481d88562bec729a64760540a0a456629b.tar.xz forums-a474e1481d88562bec729a64760540a0a456629b.zip |
Added ability to jump to a specific post ... click on the little page post icon
git-svn-id: file:///svn/phpbb/trunk@371 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 7dc9621ede..25f714a585 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -392,6 +392,7 @@ if((isset($HTTP_POST_VARS['dosearch']) || isset($HTTP_GET_VARS['dosearch'])) && $forum_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $searchset[$i]['forum_id']); $topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=" . $searchset[$i]['topic_id']); $poster_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $searchset[$i]['user_id']); + $post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=".$searchset[$i]['post_id']."#".$searchset[$i]['post_id']); $post_date = create_date($board_config['default_dateformat'], $searchset[$i]['post_time'], $board_config['default_timezone']); |