diff options
author | Tom Beddard <subblue@users.sourceforge.net> | 2006-01-04 20:57:34 +0000 |
---|---|---|
committer | Tom Beddard <subblue@users.sourceforge.net> | 2006-01-04 20:57:34 +0000 |
commit | 636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34 (patch) | |
tree | fe714a85abe78c664fa1b8eb6a463b5789aac906 /phpBB/viewonline.php | |
parent | d23a07dc7dc4248180d451bce584a47f7defd737 (diff) | |
download | forums-636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34.tar forums-636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34.tar.gz forums-636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34.tar.bz2 forums-636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34.tar.xz forums-636ab0f5ea0fb55d8cafa8aea55babae2f7c7e34.zip |
Updated references to posts to be #p[post_id] rather than #[post_id] since it is against the W3C spec to have the id="" attribute starting with a number
git-svn-id: file:///svn/phpbb/trunk@5424 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewonline.php')
-rw-r--r-- | phpBB/viewonline.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewonline.php b/phpBB/viewonline.php index 510ea827e1..b5ef2d32df 100644 --- a/phpBB/viewonline.php +++ b/phpBB/viewonline.php @@ -310,7 +310,7 @@ $template->assign_vars(array( 'TOTAL_REGISTERED_USERS_ONLINE' => sprintf($l_r_user_s, $logged_visible_online) . sprintf($l_h_user_s, $logged_hidden_online), 'TOTAL_GUEST_USERS_ONLINE' => sprintf($l_g_user_s, $guest_counter), 'LEGEND' => $legend, - 'META' => '<meta http-equiv="refresh" content="60; url=viewonline.' . $phpEx . $SID . '">', + 'META' => '<meta http-equiv="refresh" content="60; url=viewonline.' . $phpEx . $SID . '" />', 'PAGINATION' => $pagination, 'PAGE_NUMBER' => on_page($counter, $config['topics_per_page'], $start), |