summaryrefslogtreecommitdiff
path: root/tpl_functions.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2011-01-03 01:02:47 +0000
committerAnika Henke <anika@selfthinker.org>2011-01-03 01:02:47 +0000
commitb49f0667ba86f32655c5959b87d21090ee581b38 (patch)
tree56c55164c0df8292d6dba9d6a9f9b8426ee9c122 /tpl_functions.php
parentb19d382409f25e451fdee2e9c71944817b2672f4 (diff)
downloadrpg-b49f0667ba86f32655c5959b87d21090ee581b38.tar.gz
rpg-b49f0667ba86f32655c5959b87d21090ee581b38.tar.bz2
fixed wrong form method for buttons
Diffstat (limited to 'tpl_functions.php')
-rw-r--r--tpl_functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl_functions.php b/tpl_functions.php
index fcd50585a..784813272 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 "</$wrapper>";
@@ -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 "</$wrapper>";
}