--- video.module	2009-01-23 17:39:50.000000000 +0100
+++ video.module	2009-02-04 18:00:01.000000000 +0100
@@ -357,7 +357,7 @@
   $form['flash']['video_flvplayerloader'] = array(
     '#type' => 'textfield',
     '#title' => t('Filename of Flash loader'),
-    '#default_value' => variable_get('video_flvplayerloader', 'FlowPlayer.swf'),
+    '#default_value' => variable_get('video_flvplayerloader', $base_url . 'FlowPlayer.swf'),
     '#description' => t('The name of the Shockwave file that manages loading the FLV movie.'));
   $form['ogg'] = array('#type' => 'fieldset', '#title' => t('Ogg Theora settings'), '#collapsible' => TRUE, '#collapsed' => TRUE);
   $form['ogg']['video_cortado'] = array(
@@ -1056,7 +1056,7 @@
   // this will be executed by not Internet Explorer browsers
   $output = '<!--[if !IE]> <-->
 <object type="application/x-shockwave-flash" width="'. $node->videox .'" height="'. $height .'"
-data="'. url() . check_plain($loader_location) .'">
+data="'.  base_path() . check_plain($loader_location) .'">
 <!--> <![endif]-->' . "\n";
 
   // this will be executed by Internet Explorer
@@ -1067,7 +1067,7 @@
 <![endif]-->' . "\n";
 
   // params will be passed to both IE or not IE browsers
-  $output .= '<param name="movie" value="' . url() . check_plain($loader_location) . '" />
+  $output .= '<param name="movie" value="' .  base_path() . check_plain($loader_location) . '" />
                <param name="allowScriptAccess" value="sameDomain" />
                <param name="quality" value="high" />
                <param name="flashvars" value="config={baseURL:\''. $base_url .'\',videoFile:\''. $file .'\',autoPlay:true,bufferLength:5}" />' . "\n"
