Changeset 1927
- Timestamp:
- 05/18/06 03:20:57 (2 years ago)
- Files:
-
- freepbx/trunk/amp_conf/agi-bin/recordingcheck (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/agi-bin/recordingcheck
r1789 r1927 70 70 $options = $agi->database_get("AMPUSER","{$exten['data']}/recording"); 71 71 72 if ($options["result"] == "0") { 73 $agi->verbose("No AMPUSER db entry for ".$exten["data"].". Not recording"); 74 exit(1); 75 } 76 72 77 //explode recording vars 73 78 $recording = explode("|",$options["data"]); … … 90 95 $options = $agi->database_get("AMPUSER","{$exten['data']}/recording"); 91 96 97 if ($options["result"] == "0") { 98 $agi->verbose("No AMPUSER db entry for ".$exten["data"].". Not recording"); 99 exit(1); 100 } 92 101 //explode recording vars 93 102 $recording = explode("|",$options["data"]);
