diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-14 17:29:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-14 17:29:07 +0000 |
commit | 78167c02518ff9d757741f0e8df524da300d067d (patch) | |
tree | d5fbbc41f6e807439de0d34ca9a06616dd961d04 /templates/show_artist_box.inc.php | |
parent | 9a16ee2c2ce55e7693c9432be2466210a0ebc6df (diff) | |
download | ampache-78167c02518ff9d757741f0e8df524da300d067d.tar.gz ampache-78167c02518ff9d757741f0e8df524da300d067d.tar.bz2 ampache-78167c02518ff9d757741f0e8df524da300d067d.zip |
removed extra lines from ajax, down to 86, updated ajax calls, added ldap auth
Diffstat (limited to 'templates/show_artist_box.inc.php')
-rw-r--r-- | templates/show_artist_box.inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php index 5dd31a9f..20feacaa 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -23,7 +23,12 @@ $web_path = conf('web_path'); $title = _('Albums by') . " " . $artist->full_name; ?> <?php require (conf('prefix') . '/templates/show_box_top.inc.php'); ?> -<?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?> +<?php +if (conf('ratings')) { + echo "<span id=\"rating_" . $artist->id . "_artist\" style=\"display:inline;\">"; + show_rating($artist->id, 'artist'); + echo "</span>"; +} // end if ratings ?> <strong><?php echo _('Actions'); ?>:</strong><br /> <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a><br /> <a href="<?php echo $web_path; ?>/song.php?action=artist&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a><br /> |