diff options
author | andi <andi@splitbrain.org> | 2005-01-23 11:29:05 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-01-23 11:29:05 +0100 |
commit | 49c713a33bc794629ec41fbddf2c29ebd124e926 (patch) | |
tree | 7495d09e17027bc369066de81f6b4020ec653243 /inc/html.php | |
parent | 4b282abadc616ab67e208e405a245822a189c961 (diff) | |
download | rpg-49c713a33bc794629ec41fbddf2c29ebd124e926.tar.gz rpg-49c713a33bc794629ec41fbddf2c29ebd124e926.tar.bz2 |
Unicode filenames with URL encoding
darcs-hash:20050123102905-9977f-1065a1112bfd47caed0f198b94e5226c81351b64.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 3 |
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().'/'; |