From a522b676ec8fd216f2528b4cc02eb8ff8de1d698 Mon Sep 17 00:00:00 2001 From: tilghman Date: Thu, 24 Apr 2008 19:53:36 +0000 Subject: Ensure that when we set the accountcode, it actually shows up in the CDR. (Fix for AMI Originate) (Closes issue #12007) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@114621 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_local.c | 1 + 1 file changed, 1 insertion(+) diff --git a/channels/chan_local.c b/channels/chan_local.c index c89d275b2..57cab05e8 100644 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -471,6 +471,7 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout) p->chan->cid.cid_pres = p->owner->cid.cid_pres; ast_string_field_set(p->chan, language, p->owner->language); ast_string_field_set(p->chan, accountcode, p->owner->accountcode); + ast_cdr_update(p->chan); p->chan->cdrflags = p->owner->cdrflags; /* copy the channel variables from the incoming channel to the outgoing channel */ -- cgit v1.2.3