diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-27 16:32:44 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-27 16:32:44 +0000 |
| commit | 7d7a08eee624ebd75b73028624c74e0793b1425f (patch) | |
| tree | 052650584343e6dcd698df3ab171d53f6656d246 /phpBB/styles | |
| parent | 6225256418c127806f2c3d8a0ca0fe448b74c1c4 (diff) | |
| download | forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.gz forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.bz2 forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.xz forums-7d7a08eee624ebd75b73028624c74e0793b1425f.zip | |
Various bits and pieces ... this isn't really what I wanted M-2 to look like but hum ho
git-svn-id: file:///svn/phpbb/trunk@4441 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/subSilver/template/overall_header.html | 10 | ||||
| -rw-r--r-- | phpBB/styles/subSilver/template/viewforum_body.html | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/phpBB/styles/subSilver/template/overall_header.html b/phpBB/styles/subSilver/template/overall_header.html index 96a4a469ff..3a7789ca15 100644 --- a/phpBB/styles/subSilver/template/overall_header.html +++ b/phpBB/styles/subSilver/template/overall_header.html @@ -29,6 +29,16 @@ function im_popup(url, width, height) window.open(url, '_contact', 'HEIGHT=' + height + ',resizable=yes,scrollbars=yes, WIDTH=' + width); return false; } + +function goto() +{ + var page = prompt('{L_JUMP_PAGE}:', '{ON_PAGE}'); + + if (page !== null && !isNaN(page) && page > 0) + { + document.location.href = "{BASE_URL}&start=" + ((page * {PER_PAGE}) - 1); + } +} //--> </script> </head> diff --git a/phpBB/styles/subSilver/template/viewforum_body.html b/phpBB/styles/subSilver/template/viewforum_body.html index ac113374fa..eb51d64834 100644 --- a/phpBB/styles/subSilver/template/viewforum_body.html +++ b/phpBB/styles/subSilver/template/viewforum_body.html @@ -2,10 +2,10 @@ <table width="95%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> - <td><a class="titles" href="{U_VIEW_FORUM}" title="{FORUM_DESC}">{FORUM_NAME}</a><!-- IF S_IS_POSTABLE --><!-- IF MODERATORS neq ''--><br /><b class="gensmall">{L_MODERATORS}: {MODERATORS}</b><!-- ENDIF --><!-- ENDIF --></td> + <td><a class="titles" href="{U_VIEW_FORUM}" title="{FORUM_DESC}">{FORUM_NAME}</a><!-- IF S_IS_POSTABLE --><!-- IF MODERATORS --><br /><b class="gensmall">{L_MODERATORS}: {MODERATORS}</b><!-- ENDIF --><!-- ENDIF --></td> <td class="gensmall" align="right" valign="bottom"><!-- IF S_IS_POSTABLE -->{MOD_CP}<!-- ENDIF --></td> </tr> - <!-- IF PAGE_NUMBER neq '' --> + <!-- IF TOTAL_TOPICS --> <tr> <td colspan="2"><table width="100%" cellspacing="0" border="0"> <tr> |
