diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2005-06-22 20:21:20 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2005-06-22 20:21:20 +0000 |
commit | 2d9f9d67fcbd3cddd47068faeb38ad4047574bbf (patch) | |
tree | 4579aa70b9e234fad75915b5cff37619119666e1 | |
parent | 0e61770e72d1ac2747dbb14e99c9881d5abbda2b (diff) | |
download | video-2d9f9d67fcbd3cddd47068faeb38ad4047574bbf.tar.gz video-2d9f9d67fcbd3cddd47068faeb38ad4047574bbf.tar.bz2 |
Solved a but which let absolute path not work.
-rw-r--r-- | video.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/video.module b/video.module index 93f2d17..0c12726 100644 --- a/video.module +++ b/video.module @@ -208,8 +208,7 @@ $type = "vidfile"; // Didn't this use to work? header("HTTP/1.0 301 Moved Permanently"); } - header("Location: " . $base_url."/".$wl->$type); - print("ciao"); + header("Location: ".$wl->$type); } } |