diff options
author | Andreas Gohr <andi@splitbrain.org> | 2011-04-17 09:18:10 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2011-04-17 09:18:10 +0200 |
commit | 9f09385fc680aa6ef95555c50854d5867ea7831c (patch) | |
tree | 5217c80c5721b4d68771b5f8cb6d778246a43309 /inc | |
parent | 02097e2a6cbd4191438781890d484326aa60af19 (diff) | |
download | rpg-9f09385fc680aa6ef95555c50854d5867ea7831c.tar.gz rpg-9f09385fc680aa6ef95555c50854d5867ea7831c.tar.bz2 |
do not strip empty form parameters FS#2222
Diffstat (limited to 'inc')
-rw-r--r-- | inc/form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/form.php b/inc/form.php index 30e16b626..e74c52c5d 100644 --- a/inc/form.php +++ b/inc/form.php @@ -252,7 +252,7 @@ class Doku_Form { global $lang; $form = ''; $this->params['accept-charset'] = $lang['encoding']; - $form .= '<form ' . buildAttributes($this->params,true) . '><div class="no">' . DOKU_LF; + $form .= '<form ' . buildAttributes($this->params,false) . '><div class="no">' . DOKU_LF; if (!empty($this->_hidden)) { foreach ($this->_hidden as $name=>$value) $form .= form_hidden(array('name'=>$name, 'value'=>$value)); |