diff options
Diffstat (limited to 'templates/show_duplicates.inc.php')
-rw-r--r-- | templates/show_duplicates.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_duplicates.inc.php b/templates/show_duplicates.inc.php index 46de64f8..612a1ff6 100644 --- a/templates/show_duplicates.inc.php +++ b/templates/show_duplicates.inc.php @@ -46,9 +46,9 @@ <?php foreach ($duplicates as $item) { // Gather the duplicates - $songs = Catalog::get_duplicate_info($item,$search_type); + $songs = Song::get_duplicate_info($item, $search_type); - foreach ($songs as $key=>$song_id) { + foreach ($songs as $key => $song_id) { $song = new Song($song_id); $song->format(); $row_key = 'duplicate_' . $song_id; |