diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 721a1e536c..03aab6a2e8 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,4 +1,9 @@ -2010-09-24 Miguel de Dios +2010-09-27 Miguel de Dios + + * operation/events/sound_events.php: fixed the ajax check for when start + with empty list of events. + +2010-09-27 Miguel de Dios * include/functions_menu.php, operation/events/events_list.php: cleaned style source code. diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index fc6e40c6bb..b420f2bde2 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -104,7 +104,6 @@ function changeType() { } function toggleButton() { - //alert($("#button").attr('src')); if ($("#button").attr('src') == '../../images/pause.button.png') { $("#button").attr('src', '../../images/play.button.png'); stopSound(); @@ -152,8 +151,8 @@ function forgetPreviousEvents() { firedId = parseInt(data['fired']); if (firedId != 0) { id_row = firedId; - running = true; } + running = true; }, "json" );