diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
commit | 318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240 (patch) | |
tree | b8b9d60e5fdc3459b56da39825091b0f2c38ce77 /bin | |
parent | 7cdf1e980d294085fd1053a1c50cede127bf1352 (diff) | |
download | ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.gz ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.bz2 ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.zip |
fixed paging on browse catalogs page, disabled the write_tags script and removed a dbl escape on the preferences
Diffstat (limited to 'bin')
-rw-r--r-- | bin/write_tags.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/write_tags.inc b/bin/write_tags.inc index ef5152e5..90eb95ad 100644 --- a/bin/write_tags.inc +++ b/bin/write_tags.inc @@ -1,7 +1,7 @@ <?php /* - Copyright 2001 - 2006 Ampache.org + Copyright 2001 - 2007 Ampache.org All Rights Reserved This program is free software; you can redistribute it and/or @@ -31,6 +31,10 @@ $path = dirname(__FILE__); $prefix = realpath($path . '/../'); require_once $prefix . '/lib/init.php'; +// This is all broken currently so just jump ship +echo "Writting of Tags to files is not currently supported by Getid3() exiting...\n"; +exit; + // Include getID3 libs, including the ability to write tags $getID3 = new getID3(); getid3_lib::IncludeDependency(GETID3_INCLUDEPATH . "write.php", __FILE__); |