diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-05-21 17:54:53 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-05-21 17:54:53 +0000 |
commit | a21eca9d2ca345d0758ab371e75581029c959823 (patch) | |
tree | 47af403b26fc9d16e2996814659e473695982422 | |
parent | 862440dac60fb3ec96477478b85cc468b4a28f21 (diff) | |
download | video-a21eca9d2ca345d0758ab371e75581029c959823.tar.gz video-a21eca9d2ca345d0758ab371e75581029c959823.tar.bz2 |
Solved a small bug which let help url "More Information" not work.
There was an incorrect usage of the l() functions with ancors.
-rw-r--r-- | video.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video.module b/video.module index 8532a6f..1b02f33 100644 --- a/video.module +++ b/video.module @@ -458,7 +458,7 @@ function video_form($node) { '#default_value' => $node->vidfile, '#maxlength' => 250, '#required' => TRUE, - '#description' => t('Put here the video file path. You can use either relative to the drupal root directory (something/video.mov) or absolute (http://www.example.com/videos/videos.mov). Windows Media currently requires a fully qualified URL to function. Flash movies may not play with spaces in the path or filename. To add youtube.com videos enter the video ID. If your video was at (http://www.youtube.com/watch.php?v=aBM4QYXPf-s) you would enter (aBM4QYXPf-s). ') . l(t('More information.'), 'video/help#videofile')); + '#description' => t('Put here the video file path. You can use either relative to the drupal root directory (something/video.mov) or absolute (http://www.example.com/videos/videos.mov). Windows Media currently requires a fully qualified URL to function. Flash movies may not play with spaces in the path or filename. To add youtube.com videos enter the video ID. If your video was at (http://www.youtube.com/watch.php?v=aBM4QYXPf-s) you would enter (aBM4QYXPf-s). ') . l(t('More information.'), 'video/help', NULL, NULL, 'videofile')); $form['video']['videox'] = array( '#type' => 'textfield', '#title' => t('Video Size Width (x)'), |