diff options
author | dipsol <dipsol@ampache> | 2008-12-02 13:05:56 +0000 |
---|---|---|
committer | dipsol <dipsol@ampache> | 2008-12-02 13:05:56 +0000 |
commit | 6500941b585e9c364cce828e70928b85a5dfcc4b (patch) | |
tree | 017ea0a9f1371069eb557acb9ebd05d95c3677dd /templates/show_song_row.inc.php | |
parent | b18f47b0e48762468a7a60c852b1f0936c7feda2 (diff) | |
download | ampache-6500941b585e9c364cce828e70928b85a5dfcc4b.tar.gz ampache-6500941b585e9c364cce828e70928b85a5dfcc4b.tar.bz2 ampache-6500941b585e9c364cce828e70928b85a5dfcc4b.zip |
Changed some name, because of the conventions.
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r-- | templates/show_song_row.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php index 3129b5d4..812019f1 100644 --- a/templates/show_song_row.inc.php +++ b/templates/show_song_row.inc.php @@ -48,8 +48,8 @@ <?php if (Access::check('interface','75')) { ?> <?php echo Ajax::button('?action=show_edit_object&type=song&id=' . $song->id,'edit',_('Edit'),'edit_song_' . $song->id); ?> <?php $icon = $song->enabled ? 'disable' : 'enable'; ?> - <?php $row_btnFlipState = 'btnFlipState_' . $song_id; ?> - <span id="<?php echo($row_btnFlipState); ?>"> + <?php $button_flip_state_id = 'button_flip_state_' . $song_id; ?> + <span id="<?php echo($button_flip_state_id); ?>"> <?php echo Ajax::button('?page=song&action=flip_state&song_id=' . $song->id,$icon,_(ucfirst($icon)),'flip_song_' . $song->id); ?> </span> <?php } ?> |