[Astpp-commit] SF.net SVN: astpp:[2209] trunk/modules/ASTPP/lib/ASTPP.pm
Brought to you by:
darrenkw
From: <dar...@us...> - 2008-11-16 01:59:15
|
Revision: 2209 http://astpp.svn.sourceforge.net/astpp/?rev=2209&view=rev Author: darrenkw Date: 2008-11-16 01:59:10 +0000 (Sun, 16 Nov 2008) Log Message: ----------- Correct the code that returns freeswitch user vars. Modified Paths: -------------- trunk/modules/ASTPP/lib/ASTPP.pm Modified: trunk/modules/ASTPP/lib/ASTPP.pm =================================================================== --- trunk/modules/ASTPP/lib/ASTPP.pm 2008-11-16 01:42:44 UTC (rev 2208) +++ trunk/modules/ASTPP/lib/ASTPP.pm 2008-11-16 01:59:10 UTC (rev 2209) @@ -306,7 +306,7 @@ $arg{xml} .= "<variables>\n"; my @vars = &fs_list_sip_vars($self,$record->{id}); foreach my $record (@vars) { - $arg{xml} .= "<variable name=\"" . $record->{varm_name} . "\" value=\"" . $record->{var_value} . "\"/>\n"; + $arg{xml} .= "<variable name=\"" . $record->{var_name} . "\" value=\"" . $record->{var_value} . "\"/>\n"; } $arg{xml} .= "</variables>\n"; $arg{xml} .= "</user>\n"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |