diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-19 22:24:13 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-19 22:24:13 +0000 |
| commit | d133dc9874f8a56d87e002777a186379062061b7 (patch) | |
| tree | a6b86033236db9527364424a4678aef016783a1c /phpBB/viewforum.php | |
| parent | 562a2e559296b71ea673b609a183dcd8bfa15710 (diff) | |
| download | forums-d133dc9874f8a56d87e002777a186379062061b7.tar forums-d133dc9874f8a56d87e002777a186379062061b7.tar.gz forums-d133dc9874f8a56d87e002777a186379062061b7.tar.bz2 forums-d133dc9874f8a56d87e002777a186379062061b7.tar.xz forums-d133dc9874f8a56d87e002777a186379062061b7.zip | |
Templating var assignment changes and various updates or fixes
git-svn-id: file:///svn/phpbb/trunk@195 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
| -rw-r--r-- | phpBB/viewforum.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index d862d7750c..91295ebc89 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -158,16 +158,16 @@ if($total_topics) $last_post_time = date($date_format, $topic_rowset[$x]["post_time"]); $last_post_user = $topic_rowset[$x]["user2"]; $folder_img = "<img src=\"images/folder.gif\">"; - $template->assign_block_vars("topicrow", array("FORUM_ID" => $forum_id, - "POST_TOPIC_URL" => POST_TOPIC_URL, - "TOPIC_ID" => $topic_id, - "FOLDER" => $folder_img, - "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&".POST_USERS_URL."=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>")); + $template->assign_block_vars( + "topicrow", array("FORUM_ID" => $forum_id, + "TOPIC_ID" => $topic_id, + "FOLDER" => $folder_img, + "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&".POST_USERS_URL."=".$topic_rowset[$x]["id2"]."\">" . $last_post_user ."</a>")); } $count = 1; |
