summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-15 18:39:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-15 18:39:21 +0000
commit78e5af0d4fd336c8f25d87e70ec1967aa977e236 (patch)
tree7dbb64491a3a70f5c065b0ce14fdd0ffad01fe07 /bin
parent7222ece706e23142e0d5c8ae01b17c39def32d48 (diff)
downloadampache-78e5af0d4fd336c8f25d87e70ec1967aa977e236.tar.gz
ampache-78e5af0d4fd336c8f25d87e70ec1967aa977e236.tar.bz2
ampache-78e5af0d4fd336c8f25d87e70ec1967aa977e236.zip
added per user rss feed support, added the album art to the rss feed and added a sane error message to quarantine
Diffstat (limited to 'bin')
-rw-r--r--bin/quarantine_migration.php.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/quarantine_migration.php.inc b/bin/quarantine_migration.php.inc
index cb428a56..df81f290 100644
--- a/bin/quarantine_migration.php.inc
+++ b/bin/quarantine_migration.php.inc
@@ -47,6 +47,11 @@ while ($results = mysql_fetch_assoc($db_results)) {
/* Make sure we have write access to the upload dir */
$upload_dir = conf('upload_dir');
+if (!$upload_dir) {
+ echo "\nError: No Upload Directory Defined\n";
+ exit;
+}
+
if (!@is_writeable($upload_dir)) {
echo "\n" . _('Error: Unable to write to') . " $upload_dir ". "\n";
exit;