aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 17:35:13 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-19 17:35:13 +0000
commit80cca03c908a3f268f8746dc921fe4e4bf9f4fdd (patch)
treed0045e297fd697546ea3f71f1ee3440151e3b31c
parent525c09e3e672270c2149f000b7a8342bdd57ddd1 (diff)
downloadforums-80cca03c908a3f268f8746dc921fe4e4bf9f4fdd.tar
forums-80cca03c908a3f268f8746dc921fe4e4bf9f4fdd.tar.gz
forums-80cca03c908a3f268f8746dc921fe4e4bf9f4fdd.tar.bz2
forums-80cca03c908a3f268f8746dc921fe4e4bf9f4fdd.tar.xz
forums-80cca03c908a3f268f8746dc921fe4e4bf9f4fdd.zip
Fixed profile viewing url
git-svn-id: file:///svn/phpbb/trunk@192 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/viewforum.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 5590079f69..d862d7750c 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -162,12 +162,12 @@ if($total_topics)
"POST_TOPIC_URL" => POST_TOPIC_URL,
"TOPIC_ID" => $topic_id,
"FOLDER" => $folder_img,
- "TOPIC_POSTER" => "<a href=\"profile.$phpEx?mode=viewprofile?user_id=".$topic_rowset[$x]["user_id"]."\">".$topic_poster."</a>",
+ "TOPIC_POSTER" => "<a href=\"profile.$phpEx?mode=viewprofile&".POST_USERS_URL."=".$topic_rowset[$x]["user_id"]."\">".$topic_poster."</a>",
"GOTO_PAGE" => $goto_page,
"REPLIES" => $replies,
"TOPIC_TITLE" => $topic_title,
"VIEWS" => $views,
- "LAST_POST" => $last_post_time . "<br><a href=\"profile.$phpEx?mode=viewprofile?user_id=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>"));
+ "LAST_POST" => $last_post_time . "<br><a href=\"profile.$phpEx?mode=viewprofile&".POST_USERS_URL."=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>"));
}
$count = 1;