diff options
Diffstat (limited to 'server/song.ajax.php')
-rw-r--r-- | server/song.ajax.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/song.ajax.php b/server/song.ajax.php index 99f8d3d1..a9c34723 100644 --- a/server/song.ajax.php +++ b/server/song.ajax.php @@ -38,7 +38,7 @@ switch ($_REQUEST['action']) { $song->format(); //Return the new Ajax::button - $id = 'btnFlipState_' . $song->id; + $id = 'button_flip_state_' . $song->id; $button = $song->enabled ? 'disable' : 'enable'; $results[$id] = Ajax::button('?page=song&action=flip_state&song_id=' . $song->id,$button,_(ucfirst($button)),'flip_state_' . $song->id); |