summaryrefslogtreecommitdiff
path: root/inc/form.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/form.php')
-rw-r--r--inc/form.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/form.php b/inc/form.php
index e1760442e..d12827447 100644
--- a/inc/form.php
+++ b/inc/form.php
@@ -345,7 +345,7 @@ function form_makeWikiText($text, $attrs=array()) {
function form_makeButton($type, $act, $value='', $attrs=array()) {
if ($value == '') $value = $act;
//$name = (!empty($act)) ? 'do[$act]' : null;
- $elem = array('_elem'=>'button', 'type'=>$type, '_action'=>$act,
+ $elem = array('_elem'=>'button', 'type'=>$type, '_action'=>$act,
'value'=>$value, 'class'=>'button');
if (!empty($attrs['accesskey']) && empty($attrs['title'])) {
$attrs['title'] = $value . ' ['.strtoupper($attrs['accesskey']).']';
@@ -429,7 +429,7 @@ function form_makePasswordField($name, $label=null, $id='', $class='', $attrs=ar
* form_makeFileField
*
* Create a form element for a file input element with label
- *
+ *
* @see form_makeField
* @author Michael Klier <chi@chimeric.de>
*/