summaryrefslogtreecommitdiff
path: root/modules/color
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-05-14 13:43:38 +0000
committerDries Buytaert <dries@buytaert.net>2007-05-14 13:43:38 +0000
commitac65ff9074223e7b09c1c609c9d82da45b28aa55 (patch)
tree21efe0a7607d7836de38a58f75ba85c073df9ead /modules/color
parented768b53c0337cbd632d3ad208a60a48fcc50496 (diff)
downloadbrdo-ac65ff9074223e7b09c1c609c9d82da45b28aa55.tar.gz
brdo-ac65ff9074223e7b09c1c609c9d82da45b28aa55.tar.bz2
- Patch #138706 by eaton, chx, webchick, yched et al: form api 3 ... yay. :)
Diffstat (limited to 'modules/color')
-rw-r--r--modules/color/color.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/color/color.module b/modules/color/color.module
index 04bbb8ff6..1ea6c2a1b 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -26,7 +26,7 @@ function color_form_alter(&$form, $form_id) {
'#theme' => 'color_scheme_form',
);
$form['color'] += color_scheme_form(arg(4));
- $form['#submit']['color_scheme_form_submit'] = array();
+ $form['#submit'][] = 'color_scheme_form_submit';
}
// Use the generated screenshot in the theme list
@@ -183,7 +183,7 @@ function theme_color_scheme_form($form) {
/**
* Submit handler for color change form.
*/
-function color_scheme_form_submit($form_id, $values) {
+function color_scheme_form_submit($values, $form, &$form_state) {
// Get theme coloring info
if (!isset($values['info'])) {
return;