summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authorBen Coburn <btcoburn@silicodon.net>2006-03-21 03:09:48 +0100
committerBen Coburn <btcoburn@silicodon.net>2006-03-21 03:09:48 +0100
commit0e99f6d7194833f1a152c286a984baca203b25ef (patch)
tree61bdfc6cfdc8e65ab461d27ad9402f48563efec8 /inc/html.php
parent4a778400790148873f7f17dd7df42ca018b60e36 (diff)
downloadrpg-0e99f6d7194833f1a152c286a984baca203b25ef.tar.gz
rpg-0e99f6d7194833f1a152c286a984baca203b25ef.tar.bz2
'Back to top' style bug fix
Removes some link underlining that would appear around the 'Back to top' button. darcs-hash:20060321020948-05dcb-e0e5f2d30bd05bad37ad64d587fc4dc29abcb30b.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index 0cc52fbd1..6d7090c6d 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -177,7 +177,7 @@ function html_topbtn(){
global $lang;
$ret = '';
- $ret = '<a href="#dokuwiki__top"><input type="button" class="button" value="'.$lang['btn_top'].'" onclick="window.scrollTo(0, 0)" /></a>';
+ $ret = '<a class="nolink" href="#dokuwiki__top"><input type="button" class="button" value="'.$lang['btn_top'].'" onclick="window.scrollTo(0, 0)" /></a>';
return $ret;
}