diff options
author | Anika Henke <anika@selfthinker.org> | 2009-01-17 18:27:51 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2009-01-17 18:27:51 +0100 |
commit | 0256626a70202d1e324f228a56e4c88dc9348b5b (patch) | |
tree | 54144b2feea557b9444086636d7fb8ce2f67ca5a /inc | |
parent | c69534d490d446200a70cac57ac202974409a8bc (diff) | |
download | rpg-0256626a70202d1e324f228a56e4c88dc9348b5b.tar.gz rpg-0256626a70202d1e324f228a56e4c88dc9348b5b.tar.bz2 |
fixed broken empty img alt params in forms
darcs-hash:20090117172751-f7d6d-0524a77889593d24bdd46df337071833f1fecb8f.gz
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 8131ec17e..6fdd3a18e 100644 --- a/inc/form.php +++ b/inc/form.php @@ -557,7 +557,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,true).'/>'; + return '<'.$attrs['_tag'].' '.buildAttributes($attrs).'/>'; } /** |