diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-11 16:48:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-11 16:48:35 +0000 |
commit | 5b384d39245f20e80e0635c1b76d7a2e589ffe27 (patch) | |
tree | 103fa8e47957510e84bc265225cf42595961ac5b /modules/system/system.module | |
parent | f6259ad36c8644be8895c9779755df7b3b2d006c (diff) | |
download | brdo-5b384d39245f20e80e0635c1b76d7a2e589ffe27.tar.gz brdo-5b384d39245f20e80e0635c1b76d7a2e589ffe27.tar.bz2 |
- Patch #99160 by Darren Oh: image toolkit settings were missing.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e2ea74464..f38813e65 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -741,6 +741,7 @@ function system_image_toolkit_settings() { '#default_value' => variable_get('image_toolkit', image_get_toolkit()), '#options' => $toolkits_available ); + $form['image_toolkit_settings'] = image_toolkit_invoke('settings'); return system_settings_form($form); } |