--- fade_slideshow.module	2008-11-07 20:19:18.000000000 -0500
+++ fade_slideshow.module.old	2008-11-07 15:31:06.000000000 -0500
@@ -53,7 +53,7 @@
     $form['fade_slideshow_ss' . $i]['fade_slideshow_image_dir_ss' . $i] = array(
       "#type" => "textfield",
       "#title" => "Image directory",
-      "#field_prefix" => base_path() . file_directory_path() . '/',
+      "#field_prefix" => t( "/files/" ),
       "#size" => 70,
       "#description" => t( "Directory where the source images for this slideshow are located." ),
       "#default_value" => variable_get( "fade_slideshow_image_dir_ss" . $i, 'slideshow_images/'),
@@ -123,7 +123,7 @@
   $pause = variable_get('fade_slideshow_pause_ss' . $show, 1);
   $random = variable_get('fade_slideshow_random_ss' . $show, 1) ? 'R' : '';
 
-  $files = _fade_slideshow_explore_dir(base_path() . file_directory_path() . '/' . variable_get( "fade_slideshow_image_dir_ss" . $show, 'slideshow_images/') . '/');
+  $files = _fade_slideshow_explore_dir('.' . $base_path . '/files/' . variable_get( "fade_slideshow_image_dir_ss" . $show, 'slideshow_images/') . '/');
 
   $js = '<div id="fade_slideshow_' . $show . '" class="fade_slideshow">';
   $js .= '<script type="text/javascript">';
@@ -155,7 +155,7 @@
   // Get all files from a given path
   $files = array();
   foreach ($exts as $ext) {
-    $files = array_merge($files, glob('.' . $path . '*' . $ext));
+    $files = array_merge($files, glob("$path*.$ext"));
   }
 
   // If its a recursive scan, enter in all directories
