aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_upload/video_upload.module
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2006-06-20 21:23:24 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2006-06-20 21:23:24 +0000
commit749a91f80a644bd7d2222309289c32a5bb728ef2 (patch)
tree3efd76bbdff5ae9525931f6d5e3eaa5f009740ad /plugins/video_upload/video_upload.module
parent38373b18497493630ba298df1ec638655d09f8db (diff)
downloadvideo-749a91f80a644bd7d2222309289c32a5bb728ef2.tar.gz
video-749a91f80a644bd7d2222309289c32a5bb728ef2.tar.bz2
Changed check_url to check_plain in _video_get_fileurl
in order to make mms:// or rstp:// links usable. Fixed some grammar errors on video_upload Thanks Darryl (http://drupal.org/user/64435) for pointing this out. Fixed an error on video_multidownload which generated a function undefined error. Moved some video_multidownload specific ssettings from video.module to video_multidownload Added global $user to video_access. Thanks kungfoo (http://drupal.org/user/65090) for pointing this out.
Diffstat (limited to 'plugins/video_upload/video_upload.module')
-rw-r--r--plugins/video_upload/video_upload.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module
index 832cf3f..34515a3 100644
--- a/plugins/video_upload/video_upload.module
+++ b/plugins/video_upload/video_upload.module
@@ -36,7 +36,7 @@ function video_upload_settings() {
$form['video_upload_override_vidfile'] = array(
'#type' => 'checkbox',
'#title' => t('override video file'),
- '#description' => t('Check this if your users must only submit videos throught uploading. This disable path insertion.'),
+ '#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(