From 80435b54a596adf02e5c4fb422543bafb700c125 Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Tue, 23 Jan 2007 20:36:08 +0000 Subject: [PATCH] Merged revisions 51716 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r51716 | murf | 2007-01-23 13:32:54 -0700 (Tue, 23 Jan 2007) | 1 line this mod from 8593 (dstchannel in cdr is empty when transfer call). ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@51717 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_features.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/res/res_features.c b/res/res_features.c index aa110fd0e8..085b998b1c 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1835,6 +1835,9 @@ static int park_exec(struct ast_channel *chan, void *data) } res = ast_bridge_call(chan, peer, &config); + pbx_builtin_setvar_helper(chan, "PARKEDCHANNEL", peer->name); + ast_cdr_setdestchan(chan->cdr, peer->name); + /* Simulate the PBX hanging up */ if (res != AST_PBX_NO_HANGUP_PEER) ast_hangup(peer);