1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

viewonline updates

git-svn-id: file:///svn/phpbb/trunk@155 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-04-16 00:02:06 +00:00
parent 830535cdca
commit 17edd92527
2 changed files with 30 additions and 6 deletions

View File

@@ -126,6 +126,24 @@ switch($pagetype)
"TOPIC_TITLE" => $topic_title));
$template->pparse("header");
break;
case 'viewonline':
$template->set_filenames(array("header" => "viewonline_header.tpl",
"body" => "viewonline_body.tpl",
"jumpbox" => "jumpbox.tpl",
"footer" => "viewonline_footer.tpl"));
$jumpbox = make_jumpbox($db);
$template->assign_vars(array("TOTAL_POSTS" => $total_posts,
"TOTAL_USERS" => $total_users,
"NEWEST_USER" => $newest_user,
"NEWEST_UID" => $newest_uid,
"JUMPBOX_LIST" => $jumpbox,
"JUMPBOX_ACTION" => "viewforum.".$phpEx,
"SELECT_NAME" => POST_FORUM_URL));
$template->assign_var_from_handle("JUMPBOX", "jumpbox");
$template->pparse("header");
break;
case 'newtopic':
$template->set_filenames(array("header" => "newtopic_header.tpl",
"body" => "posting_body.tpl"));