diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-11-20 11:36:44 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-11-20 11:36:44 +0100 |
commit | 3417a2d22a5bd7f01bf089a4f268376203b12e11 (patch) | |
tree | 40778a97a651b567a58de23288b44bd743de76a7 /inc/form.php | |
parent | 11d7187b1b2e7bddc70324b865e01e750c5df162 (diff) | |
parent | c277a6bdf6a2286eadaba9b8ad5c638b9d50922b (diff) | |
download | rpg-3417a2d22a5bd7f01bf089a4f268376203b12e11.tar.gz rpg-3417a2d22a5bd7f01bf089a4f268376203b12e11.tar.bz2 |
Merge branch 'later'
Diffstat (limited to 'inc/form.php')
-rw-r--r-- | inc/form.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/form.php b/inc/form.php index 70190d2b4..e614d2f30 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 ' . html_attbuild($this->params) . '><div class="no">' . DOKU_LF; + $form .= '<form ' . buildAttributes($this->params,true) . '><div class="no">' . DOKU_LF; if (!empty($this->_hidden)) { foreach ($this->_hidden as $name=>$value) $form .= form_hidden(array('name'=>$name, 'value'=>$value)); @@ -597,7 +597,7 @@ function form_makeListboxField($name, $values, $selected='', $label=null, $id='' * @author Tom N Harris <tnharris@whoopdedo.org> */ function form_tag($attrs) { - return '<'.$attrs['_tag'].' '.buildAttributes($attrs).'/>'; + return '<'.$attrs['_tag'].' '.buildAttributes($attrs,true).'/>'; } /** |