summaryrefslogtreecommitdiffstats
path: root/templates/show_song.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_song.inc.php')
-rw-r--r--templates/show_song.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_song.inc.php b/templates/show_song.inc.php
index 07a0dd06..7fd41c75 100644
--- a/templates/show_song.inc.php
+++ b/templates/show_song.inc.php
@@ -26,11 +26,11 @@ $button_flip_state_id = 'button_flip_state_' . $song->id;
<?php show_box_top($song->title . ' ' . T_('Details'), 'box box_song_details'); ?>
<dl class="song_details">
<?php if (Config::get('ratings')) { ?>
-<dt class="<?php echo flip_class(); ?>"><?php echo T_('Rating'); ?></dt>
+<dt class="<?php echo UI::flip_class(); ?>"><?php echo T_('Rating'); ?></dt>
<dd><div id="rating_<?php echo $song->id; ?>_song"><?php Rating::show($song->id,'song'); ?></div></dd>
<?php } ?>
<dt class="<?php echo $rowparity; ?>"><?php echo T_('Action'); ?></dt>
- <dd class="<?php echo flip_class(); ?>">
+ <dd class="<?php echo UI::flip_class(); ?>">
<?php echo Ajax::button('?action=basket&type=song&id=' . $song->id,'add', T_('Add'),'add_song_' . $song->id); ?>
<?php if (Access::check_function('download')) { ?>
<a href="<?php echo Song::play_url($song->id); ?>"><?php echo get_user_icon('link', T_('Link')); ?></a>
@@ -65,7 +65,7 @@ $button_flip_state_id = 'button_flip_state_' . $song->id;
{
if(trim($value))
{
- $rowparity = flip_class();
+ $rowparity = UI::flip_class();
echo "<dt class=\"".$rowparity."\">" . T_($key) . "</dt><dd class=\"".$rowparity."\">" . $value . "</dd>";
}
}