From b49f0667ba86f32655c5959b87d21090ee581b38 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Mon, 3 Jan 2011 01:02:47 +0000 Subject: [PATCH] fixed wrong form method for buttons --- tpl_functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tpl_functions.php b/tpl_functions.php index fcd5058..7848132 100644 --- a/tpl_functions.php +++ b/tpl_functions.php @@ -30,12 +30,12 @@ function _tpl_discussion($discussionPage,$title,$backTitle,$link=0,$wrapper=0) { if ($link) tpl_pagelink($backID,$backTitle); else - echo html_btn('back2article',$backID,'',array(),0,0,$backTitle); + echo html_btn('back2article',$backID,'',array(),'get',0,$backTitle); } else { if ($link) tpl_pagelink($discussPage,$title); else - echo html_btn('discussion',$discussPage,'',array(),0,0,$title); + echo html_btn('discussion',$discussPage,'',array(),'get',0,$title); } if ($wrapper) echo ""; @@ -57,7 +57,7 @@ function _tpl_userpage($userPage,$title,$link=0,$wrapper=0) { if ($link) tpl_pagelink($userPage,$title); else - echo html_btn('userpage',$userPage,'',array(),0,0,$title); + echo html_btn('userpage',$userPage,'',array(),'get',0,$title); if ($wrapper) echo ""; }