diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-02-14 01:33:15 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-02-14 01:33:15 +0000 |
commit | 45bf0c4e0c609fd2c495a9f3fe375a1b4aa371f7 (patch) | |
tree | 5a95c680f37617aac7d5aa1689750747e97fa25e /templates/show_albums.inc.php | |
parent | a7869cad8f8c7290898255e2f8ed8927d42d5426 (diff) | |
download | ampache-45bf0c4e0c609fd2c495a9f3fe375a1b4aa371f7.tar.gz ampache-45bf0c4e0c609fd2c495a9f3fe375a1b4aa371f7.tar.bz2 ampache-45bf0c4e0c609fd2c495a9f3fe375a1b4aa371f7.zip |
Fix typos, and tweak insert_now_playing preping for Video now playing
Diffstat (limited to 'templates/show_albums.inc.php')
-rw-r--r-- | templates/show_albums.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_albums.inc.php b/templates/show_albums.inc.php index 68a6a4ca..25e9c4b6 100644 --- a/templates/show_albums.inc.php +++ b/templates/show_albums.inc.php @@ -25,7 +25,7 @@ $ajax_url = Config::get('ajax_url'); <table class="tabledata" cellpadding="0" cellspacing="0"> <colgroup> <col id="col_add" /> -<?php if (Browse::is_enabled('show_art') { ?> +<?php if (Browse::is_enabled('show_art')) { ?> <col id="col_cover" /> <?php } ?> <col id="col_album" /> @@ -38,7 +38,7 @@ $ajax_url = Config::get('ajax_url'); </colgroup> <tr class="th-top"> <th class="cel_add"><?php echo _('Add'); ?></th> - <?php if (Browse::is_enabled('show_art') { ?> + <?php if (Browse::is_enabled('show_art')) { ?> <th class="cel_cover"><?php echo _('Cover'); ?></th> <?php } ?> <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&type=album&sort=name',_('Album'),'album_sort_name'); ?></th> @@ -69,7 +69,7 @@ $ajax_url = Config::get('ajax_url'); <?php } ?> <tr class="th-bottom"> <th class="cel_add"><?php echo _('Add'); ?></th> - <?php if (Browse::is_enabled('show_art') { ?> + <?php if (Browse::is_enabled('show_art')) { ?> <th class="cel_cover"><?php echo _('Cover'); ?></th> <?php } ?> <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&type=album&sort=name',_('Album'),'album_sort_name_bottom'); ?></th> |