summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-10-18 14:36:46 +0000
committerDries Buytaert <dries@buytaert.net>2005-10-18 14:36:46 +0000
commit7f5f3ac6c8d3fc505ee309befb781233b28155da (patch)
tree8cf3f3cf48860d728e992c08512b58eefae2396e
parent1c0b94653502363a77b17eefc4a79170df77f584 (diff)
downloadbrdo-7f5f3ac6c8d3fc505ee309befb781233b28155da.tar.gz
brdo-7f5f3ac6c8d3fc505ee309befb781233b28155da.tar.bz2
- Patch #34052 by webchick: fixed typo in form code.
-rw-r--r--modules/system.module2
-rw-r--r--modules/system/system.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module
index 8fd77e98f..25d1b1c66 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -59,7 +59,7 @@ function system_elements() {
// Inputs
$type['checkbox'] = array('#input' => TRUE, '#return_value' => 1);
$type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#execute' => TRUE);
- $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', exexute => FALSE);
+ $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#execute' => FALSE);
$type['textfield'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 70, '#autocomplete_path' => FALSE);
$type['password'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 70);
$type['textarea'] = array('#input' => TRUE, '#cols' => 60, '#rows' => 20);
diff --git a/modules/system/system.module b/modules/system/system.module
index 8fd77e98f..25d1b1c66 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -59,7 +59,7 @@ function system_elements() {
// Inputs
$type['checkbox'] = array('#input' => TRUE, '#return_value' => 1);
$type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#execute' => TRUE);
- $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', exexute => FALSE);
+ $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#execute' => FALSE);
$type['textfield'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 70, '#autocomplete_path' => FALSE);
$type['password'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 70);
$type['textarea'] = array('#input' => TRUE, '#cols' => 60, '#rows' => 20);