From a21eca9d2ca345d0758ab371e75581029c959823 Mon Sep 17 00:00:00 2001 From: Fabio Varesano Date: Sun, 21 May 2006 17:54:53 +0000 Subject: Solved a small bug which let help url "More Information" not work. There was an incorrect usage of the l() functions with ancors. --- video.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)'), -- cgit v1.2.3