diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-17 05:11:53 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-17 05:11:53 +0000 |
commit | ea624090bcbab6c74435a2e2bf4fed8b05ac5be1 (patch) | |
tree | f5c322dd79296ed826308302a7f5f57361f61443 /templates/show_now_playing_row.inc.php | |
parent | 04cd880273aadd127a89e2cca89cb055fd534a9e (diff) | |
download | ampache-ea624090bcbab6c74435a2e2bf4fed8b05ac5be1.tar.gz ampache-ea624090bcbab6c74435a2e2bf4fed8b05ac5be1.tar.bz2 ampache-ea624090bcbab6c74435a2e2bf4fed8b05ac5be1.zip |
some minor tweakage to make ajaxie stuff kind of work in IE
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 238d078f..56697326 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -28,7 +28,7 @@ $artist = scrub_out(truncate_with_ellipse($song->f_artist_full,'25')); <b><?php echo _('Song'); ?></b><br /><a title="<?php echo scrub_out($song->title); ?>" href="<?php echo $web_path; ?>/song.php?action=single_song&song_id=<?php echo $song->id; ?>"> <?php echo $title; ?> </a> - <?php if(conf('ratings')) { ?> + <?php if(Config::get('ratings')) { ?> <br /><?php show_rating($song->id,'song'); ?> <?php } ?> </td> @@ -44,4 +44,4 @@ $artist = scrub_out(truncate_with_ellipse($song->f_artist_full,'25')); <a target="_blank" href="<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&type=popup&sid=<?php echo session_id(); ?>" onclick="popup_art('<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&type=popup&sid=<?php echo session_id(); ?>'); return false;"> <img align="middle" border="0" src="<?php echo $web_path; ?>/image.php?id=<?php echo $song->album; ?>&thumb=1&sid=<?php echo session_id(); ?>" alt="Album Art" height="75" width="75" /></a> </td> -<?php } // end play album art ?>
\ No newline at end of file +<?php } // end play album art ?> |