summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-11-04 18:03:18 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-11-04 18:03:18 +0000
commit979d3b0f5e8060060a331d382251557caf7ca2b6 (patch)
treebbe6f8a7f0582272e82f90cc13a7daafbd69f5be /bin
parentf6cc5f19d2d3746a1adae1b3f7cd4e784127f02c (diff)
downloadampache-979d3b0f5e8060060a331d382251557caf7ca2b6.tar.gz
ampache-979d3b0f5e8060060a331d382251557caf7ca2b6.tar.bz2
ampache-979d3b0f5e8060060a331d382251557caf7ca2b6.zip
fixed few dead links, and cli update_catalog and dump_album_art
Diffstat (limited to 'bin')
-rw-r--r--bin/dump_album_art.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/dump_album_art.inc b/bin/dump_album_art.inc
index 4baa0ebf..9d88b7ea 100644
--- a/bin/dump_album_art.inc
+++ b/bin/dump_album_art.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
@@ -26,8 +26,8 @@ require_once $prefix . '/lib/init.php';
$catalogs = Catalog::get_catalogs();
-foreach ($catalogs as $catalog) {
- $catalog->dump_album_art();
+foreach ($catalogs as $catalog_id) {
+ Catalog::dump_album_art($catalog_id);
}
?>