diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-27 14:45:23 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-27 14:45:23 +0000 |
commit | c8c7cfe6efa97e676c6f5e460250eb7781d88905 (patch) | |
tree | 239037c0d6b9259d81d3eddd888a4726d2de9e9d /lib/batch.lib.php | |
parent | 7b389d20fef0b847bf9e095d6857e3f493370b0e (diff) | |
download | ampache-c8c7cfe6efa97e676c6f5e460250eb7781d88905.tar.gz ampache-c8c7cfe6efa97e676c6f5e460250eb7781d88905.tar.bz2 ampache-c8c7cfe6efa97e676c6f5e460250eb7781d88905.zip |
moved archive into a modules directory, cause we didnt write it
Diffstat (limited to 'lib/batch.lib.php')
-rw-r--r-- | lib/batch.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/batch.lib.php b/lib/batch.lib.php index f30f6f16..3d22a72f 100644 --- a/lib/batch.lib.php +++ b/lib/batch.lib.php @@ -50,7 +50,7 @@ function get_song_files( $song_ids ) { function send_zip( $name, $song_files ) { /* Require needed library */ - require_once(conf('prefix') . '/lib/archive.lib.php' ); + require_once(conf('prefix') . '/modules/archive/archive.lib.php' ); $arc = new zip_file( $name . ".zip" ); $options = array( 'inmemory' => 1, // create archive in memory |