diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-18 18:58:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-18 18:58:47 +0000 |
commit | 7de41539df93abeea427c1aa83ee7e13684a4fc6 (patch) | |
tree | cbe403960892b0f34dbc2674bd068686b6b22693 /modules/upload/upload.module | |
parent | e2f42cf3d544bc90accaab9eff800277ac60c9f1 (diff) | |
download | brdo-7de41539df93abeea427c1aa83ee7e13684a4fc6.tar.gz brdo-7de41539df93abeea427c1aa83ee7e13684a4fc6.tar.bz2 |
- Patch #77919 by chx, eaton, moshe, et al: enable programmaticaly submitted forms via the pull model.
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r-- | modules/upload/upload.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index bf1a130eb..38f1398da 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -81,7 +81,8 @@ function upload_menu($may_cache) { $items[] = array('path' => 'admin/settings/uploads', 'title' => t('file uploads'), 'description' => t('Control how files may be attached to content.'), - 'callback' => 'upload_admin_settings', + 'callback' => 'drupal_get_form', + 'callback arguments' => array('upload_admin_settings'), 'access' => user_access('administer site configuration'), 'type' => MENU_NORMAL_ITEM); } @@ -252,7 +253,7 @@ function upload_admin_settings() { ); } - return system_settings_form('upload_admin_settings', $form); + return system_settings_form($form); } function upload_download() { |