Changeset 13982

Show
Ignore:
Timestamp:
04/19/12 16:04:07 (1 year ago)
Author:
p_lindheimer
Message:

fixes #5783 restart the recording if a blind transfer, but needs testing on calling a queue AND other inbound blind transfer scenarios that were previously working to make sure this change does not break one of those or create other issues. Core should not be published before some thorough testing on this is done.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.10/core/functions.inc.php

    r13919 r13982  
    19521952      $ext->add($context, $exten, '', new ext_gotoif('$["${BLINDTRANSFER}" = ""]', 'check')); 
    19531953      $ext->add($context, $exten, '', new ext_resetcdr('')); 
     1954      $ext->add($context, $exten, '', new ext_gotoif('$["${REC_STATUS}" != "RECORDING"]', 'check')); 
     1955      $ext->add($context, $exten, '', new ext_set('AUDIOHOOK_INHERIT(MixMonitor)','yes')); 
     1956      $ext->add($context, $exten, '', new ext_mixmonitor('${MIXMON_DIR}${YEAR}/${MONTH}/${DAY}/${CALLFILENAME}.${MIXMON_FORMAT}','a','${MIXMON_POST}')); 
    19541957      $ext->add($context, $exten, 'check', new ext_set('MON_FMT','${IF($["${MIXMON_FORMAT}"="wav49"]?WAV:${MIXMON_FORMAT})}')); 
    19551958      $ext->add($context, $exten, '', new ext_gotoif('$["${REC_STATUS}"!="RECORDING"]', 'next'));