aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2006-07-16 10:06:53 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2006-07-16 10:06:53 +0000
commitff6aced626a38128ff381fecf36f402d911f8aa5 (patch)
tree5d1a9605b8e7ffe8604f7c45a0e01543f24f8ffd
parent4e396b0b5d34c589afcba0c56361b926423bd479 (diff)
downloadvideo-ff6aced626a38128ff381fecf36f402d911f8aa5.tar.gz
video-ff6aced626a38128ff381fecf36f402d911f8aa5.tar.bz2
Removed an unused setting. (uploadable extensions)
-rw-r--r--plugins/video_upload/video_upload.module7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module
index 7008690..7b60ef4 100644
--- a/plugins/video_upload/video_upload.module
+++ b/plugins/video_upload/video_upload.module
@@ -39,13 +39,6 @@ function video_upload_settings() {
'#description' => t('Check this if your users must only submit videos through uploading. This disables path insertion.'),
'#default_value' => variable_get('video_upload_override_vidfile', false),
);
- $form['video_upload_uploadable_extensions'] = array(
- '#type' => 'textfield',
- '#title' => t('uploadable extensions'),
- '#description' => t('Insert here a comma separated list of extensions you want to enable for upload.'),
- '#default_value' => variable_get('video_upload_uploadable_extensions', ''),
- );
-
return $form;
}