Changeset 6650
- Timestamp:
- 09/08/08 05:41:20 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/ari_changes/amp_conf/htdocs/recordings/misc/callme_page.php
r6473 r6650 76 76 $crypt = new Crypt(); 77 77 $path = $crypt->decrypt($_REQUEST['recording'],$ARI_CRYPT_PASSWORD); 78 $from = $crypt->decrypt($_REQUEST['cid'],$ARI_CRYPT_PASSWORD);79 78 $to = $crypt->decrypt($_REQUEST['callmenum'],$ARI_CRYPT_PASSWORD); 80 79 $pageaction = $_REQUEST['action']; 81 80 $msgFrom = $crypt->decrypt($_REQUEST['msgFrom'],$ARI_CRYPT_PASSWORD); 82 $cname = $crypt->decrypt($_REQUEST['channel_name'],$ARI_CRYPT_PASSWORD);83 81 $new_path = substr($path, 0, -4); /* Without the sound file extension. */ 84 82 $matches[0] = ''; /* init the $matches array. */ freepbx/branches/ari_changes/amp_conf/htdocs/recordings/modules/voicemail.module
r6509 r6650 409 409 $recordingCrypt = urlencode($crypt->encrypt($recording,$ARI_CRYPT_PASSWORD)); 410 410 $recordingLink = "<a href='#' onClick=\"javascript:playback('play', $playbackRow, 'misc/play_page.php?recording=" . $recordingCrypt . "'); return false;\"><img src='theme/images/sound.png' title=" . _("Play") . "></img></a>"; 411 $ cidCrypt = urlencode($crypt->encrypt($extension,$ARI_CRYPT_PASSWORD));411 $msgFromCrypt = urlencode($crypt->encrypt($extension,$ARI_CRYPT_PASSWORD)); 412 412 $callmenumCrypt = urlencode($crypt->encrypt($this->callme_num,$ARI_CRYPT_PASSWORD)); 413 $msgFromCrypt = urlencode($crypt->encrypt($from,$ARI_CRYPT_PASSWORD));414 413 $callmePage = "'misc/callme_page.php?recording=" . $recordingCrypt . "&callmenum=" . $callmenumCrypt . "&action=c&msgFrom=" . $msgFromCrypt . "'"; 415 414 $callme_tooltip = _("Play message at: ") . $this->callme_num;
