summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index 97a0c091b..16269d0a8 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -242,7 +242,8 @@ function html_btn($name,$id,$akey,$params,$method='get'){
$ret = '';
- $id = idfilter($id);
+ //filter id (without urlencoding)
+ $id = idfilter($id,false);
//make nice URLs even for buttons
$link = getBaseURL().'/';