diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-10-22 12:20:41 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-10-22 12:20:41 +0000 |
commit | 1a616b29653acb8695065f32e2bb2fea881d12a1 (patch) | |
tree | 64eed97989be9f1f3ffeade19fe0c1370c265c28 | |
parent | 4c06be0324c28d4c32353b1b4c9eecd5f3d2589e (diff) | |
download | forums-1a616b29653acb8695065f32e2bb2fea881d12a1.tar forums-1a616b29653acb8695065f32e2bb2fea881d12a1.tar.gz forums-1a616b29653acb8695065f32e2bb2fea881d12a1.tar.bz2 forums-1a616b29653acb8695065f32e2bb2fea881d12a1.tar.xz forums-1a616b29653acb8695065f32e2bb2fea881d12a1.zip |
jumpto fixes for Mozilla
git-svn-id: file:///svn/phpbb/trunk@4623 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/styles/subSilver/template/overall_header.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/styles/subSilver/template/overall_header.html b/phpBB/styles/subSilver/template/overall_header.html index c6060bfdb9..9ac8c8b047 100644 --- a/phpBB/styles/subSilver/template/overall_header.html +++ b/phpBB/styles/subSilver/template/overall_header.html @@ -6,7 +6,7 @@ {META} <title>{SITENAME} :: {PAGE_TITLE}</title> <!-- IF T_STYLESHEET_LINK --> -<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css"> +<link rel="stylesheet" href="{T_STYLESHEET_LINK}" name="{T_STYLESHEET_NAME}" type="text/css"> <!-- ELSE --> <style type="text/css"> <!-- @@ -34,10 +34,11 @@ function jumpto() { var page = prompt('{L_JUMP_PAGE}:', '{ON_PAGE}'); var perpage = '{PER_PAGE}'; + var base_url = '{BASE_URL}'; if (page !== null && !isNaN(page) && page > 0) { - document.location.href = "{BASE_URL}&start=" + ((page - 1) * perpage); + document.location.href = base_url.replace('&', '&') + '&start=' + ((page - 1) * perpage); } } //--> |