diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-11-05 09:11:18 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-11-05 09:11:18 +0000 |
commit | 22e4732e59bcd6f2ed761f01b7a8a555bd5bbc0d (patch) | |
tree | bf94fedbbfdb43aed1565dee07bbe762c42631cb | |
parent | c78366fdfd2b53d8154ef863fd32764f42e25cb5 (diff) | |
download | video-22e4732e59bcd6f2ed761f01b7a8a555bd5bbc0d.tar.gz video-22e4732e59bcd6f2ed761f01b7a8a555bd5bbc0d.tar.bz2 |
Patch #89065 by Moxide : Page not found error when trying to download other formats
-rw-r--r-- | plugins/video_multidownload/video_multidownload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_multidownload/video_multidownload.module b/plugins/video_multidownload/video_multidownload.module index 23b1826..0e5f37d 100644 --- a/plugins/video_multidownload/video_multidownload.module +++ b/plugins/video_multidownload/video_multidownload.module @@ -164,7 +164,7 @@ function video_multidownload_download() { } else if (arg(3) != '') { //If we are passed an encoded URL redirect to the downloader. - _video_download_goto(arg(3), $node->vid, TRUE); + _video_multidownload_download_goto(arg(3), $node->vid, TRUE); } else { //Multiple file downloads is turned on. $download_error = FALSE; //Initialize and clear the error flag. |