Update voicemail_messages.php
This commit is contained in:
parent
8c7e2044fb
commit
fbec08e579
|
|
@ -261,6 +261,7 @@
|
|||
$vm->voicemail_id = $voicemail_id;
|
||||
}
|
||||
$voicemails = $vm->messages();
|
||||
|
||||
$num_rows = 0;
|
||||
if (!empty($voicemails) && is_array($voicemails)) {
|
||||
foreach ($voicemails as $voicemail) {
|
||||
|
|
@ -424,7 +425,7 @@
|
|||
|
||||
//set the list row url as a variable
|
||||
$list_row_url = "javascript:recording_play('".escape($row['voicemail_message_uuid'])."','".$row['voicemail_id'].'|'.$row['voicemail_uuid']."','message');";
|
||||
|
||||
|
||||
//playback progress bar
|
||||
echo "<tr class='list-row' id='recording_progress_bar_".escape($row['voicemail_message_uuid'])."' style='display: none;' onclick=\"recording_play('".escape($row['voicemail_message_uuid'])."','".$row['voicemail_id'].'|'.$row['voicemail_uuid']."','message')\"><td id='playback_progress_bar_background_".escape($row['voicemail_message_uuid'])."' class='playback_progress_bar_background' style='padding: 0; border: none;' colspan='".$col_count."'><span class='playback_progress_bar' id='recording_progress_".escape($row['voicemail_message_uuid'])."'></span></td></tr>\n";
|
||||
echo "<tr style='display: none;'><td></td></tr>\n"; // dummy row to maintain alternating background color
|
||||
|
|
@ -521,4 +522,4 @@
|
|||
//include the footer
|
||||
require_once "resources/footer.php";
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue