From 7f5f3ac6c8d3fc505ee309befb781233b28155da Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 18 Oct 2005 14:36:46 +0000 Subject: - Patch #34052 by webchick: fixed typo in form code. --- modules/system.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/system.module') 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); -- cgit v1.2.3