summaryrefslogtreecommitdiffstats
path: root/templates/show_genres.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-03-17 04:33:37 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-03-17 04:33:37 +0000
commit30d5ec2c63ebcb4b131d83770aede629ebb80e69 (patch)
treea77e6e1f5efaa74b85d6e0b48509b30039ed3637 /templates/show_genres.inc.php
parente95db50a7403657838033314d45cc578e77ed392 (diff)
downloadampache-30d5ec2c63ebcb4b131d83770aede629ebb80e69.tar.gz
ampache-30d5ec2c63ebcb4b131d83770aede629ebb80e69.tar.bz2
ampache-30d5ec2c63ebcb4b131d83770aede629ebb80e69.zip
added some not enough data errors on the browse functions
Diffstat (limited to 'templates/show_genres.inc.php')
-rw-r--r--templates/show_genres.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/show_genres.inc.php b/templates/show_genres.inc.php
index 1e60c8ba..512d1bb6 100644
--- a/templates/show_genres.inc.php
+++ b/templates/show_genres.inc.php
@@ -63,6 +63,11 @@ foreach ($object_ids as $genre_id) {
</td>
</tr>
<?php } // end foreach genres ?>
+<?php if (!count($object_ids)) { ?>
+<tr class="<?php echo flip_class(); ?>">
+ <td colspan="4"><span class="fatalerror"><?php echo _('Not Enough Data'); ?></span></td>
+</tr>
+<?php } ?>
<tr class="th-bottom">
<th class="cel_add"><?php echo _('Add'); ?></th>
<th class="cel_genre"><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Genre'),'sort_genre_name_bottom'); ?></th>