Changeset 8102
- Timestamp:
- 08/23/09 16:10:55 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.6/amp_conf/htdocs/recordings/misc/play_page.php
r6980 r8102 26 26 if (isset($path)) { 27 27 28 echo("<embed width='100%' src='audio.php?recindex=" . $_REQUEST['recindex'] . "' width=300, height=25 autoplay=true loop=false></embed><br>");28 echo("<embed width='100%' type='audio/basic' src='audio.php?recindex=" . $_REQUEST['recindex'] . "' width=300, height=25 autoplay=true loop=false></embed><br>"); 29 29 } 30 30 echo("<script language='javascript'>parent.document.getElementById('pb_load_inprogress').value='false';</script>"); freepbx/branches/2.6/amp_conf/htdocs/recordings/modules/callmonitor.module
r7598 r8102 233 233 $_SESSION['ari_user']['recfiles'][$i] = $recording; 234 234 $recordingLink = "<a href='#' onClick=\"javascript:play($playbackRow, 'misc/play_page.php?recindex=" . $i . "'); return false;\"><img src='theme/images/sound.png' title=" . _("Play") . "></img></a>"; 235 $downloadLink = "<a href= /recordings/misc/audio.php?recindex=" . $i . "><img src='theme/images/drive_go.png' title=" . _("Download") . "></img></a>";235 $downloadLink = "<a href=misc/audio.php?recindex=" . $i . "><img src='theme/images/drive_go.png' title=" . _("Download") . "></img></a>"; 236 236 if ($CALLMONITOR_ALLOW_DELETE) { 237 237 $recording_delete_checkbox = "<td class='checkbox'><input type=checkbox name='selected" . $i . "' value=" . $i . "></td>"; freepbx/branches/2.6/amp_conf/htdocs/recordings/modules/voicemail.module
r7598 r8102 556 556 $callme_tooltip = _("Play message at: ") . $this->callme_num; 557 557 $callmeLink = "<a href='#' onClick=\"javascript:playback('callme', $playbackRow, $callmePage); return false;\"><img src='theme/images/telephone.png' title='" . $callme_tooltip . "'></img></a>"; 558 $downloadLink = "<a href= /recordings/misc/audio.php?recindex=" . $i . "><img src='theme/images/drive_go.png' title=" . _("Download") . "></img></a>";558 $downloadLink = "<a href=misc/audio.php?recindex=" . $i . "><img src='theme/images/drive_go.png' title=" . _("Download") . "></img></a>"; 559 559 } 560 560 else {
