[Astpp-commit] SF.net SVN: astpp: [2143] trunk/astpp-did-map.agi
Brought to you by:
darrenkw
From: <dar...@us...> - 2007-11-02 03:20:31
|
Revision: 2143 http://astpp.svn.sourceforge.net/astpp/?rev=2143&view=rev Author: darrenkw Date: 2007-11-01 20:20:33 -0700 (Thu, 01 Nov 2007) Log Message: ----------- Corrected the variable setting code. Modified Paths: -------------- trunk/astpp-did-map.agi Modified: trunk/astpp-did-map.agi =================================================================== --- trunk/astpp-did-map.agi 2007-11-02 02:46:14 UTC (rev 2142) +++ trunk/astpp-did-map.agi 2007-11-02 03:20:33 UTC (rev 2143) @@ -138,7 +138,7 @@ $variable =~ s/"//g; #Strip off quotation marks my ($name,$value) = split(m/=/m, $variable); # This will split the variable into a "name" and "value" as needed $AGI->exec( 'Set', "$name=$value" ); - $AGI->set_variable( '$name', "\"$value\"" ); + $AGI->set_variable( "$name", "\"$value\"" ); } } if ($extension_info->{limittime} == 1) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |