diff --git a/inc/html.php b/inc/html.php index 0e1364316dcdd09a70aae414cf51503ef7808ad4..435288688e974f190fcc6de965039f76240f546c 100644 --- a/inc/html.php +++ b/inc/html.php @@ -171,9 +171,8 @@ function html_topbtn(){ global $lang; $ret = ''; - $ret .= '<form class="button" method="get" action="#top" onsubmit="return svchk()">'; - $ret .= '<input type="submit" value="'.htmlspecialchars($lang['btn_top']).'" class="button" />'; - $ret .= '</form>'; + $ret = '<a href="#top"><input type="button" class="button" value="Back to top" onclick="window.scrollTo(0, 0)" /></a>'; + return $ret; }