espiceland: branch 2.0 r5081 - /branches/2.0/config/js/pbx2.js

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Wed Sep 8 09:47:34 CDT 2010


Author: espiceland
Date: Wed Sep  8 09:47:31 2010
New Revision: 5081

URL: http://svnview.digium.com/svn/asterisk-gui?view=rev&rev=5081
Log:
Open source branch was not adding 'g' to analog trunk names.  Also, the fix for the analog trunk naming bug was implemented in two different ways in two different branches, so I made that code the same.

Modified:
    branches/2.0/config/js/pbx2.js

Modified: branches/2.0/config/js/pbx2.js
URL: http://svnview.digium.com/svn/asterisk-gui/branches/2.0/config/js/pbx2.js?view=diff&rev=5081&r1=5080&r2=5081
==============================================================================
--- branches/2.0/config/js/pbx2.js (original)
+++ branches/2.0/config/js/pbx2.js Wed Sep  8 09:47:31 2010
@@ -1449,7 +1449,7 @@
 	ext_conf.new_action('newcat', ct + ASTGUI.contexts.TrunkDefaultSuffix, '', '');
 	ext_conf.new_action('append', ct, 'include', ct + ASTGUI.contexts.TrunkDefaultSuffix);
 	/* not going to work for analog vv */
-	ext_conf.new_action('update', 'globals', name, tech + '/' + ((type === 'analog')? group : name));
+	ext_conf.new_action('update', 'globals', name, tech + '/' + ((type === 'analog') ? 'g' + group : name));
 
 	resp = '';
 	resp = ext_conf.callActions();




More information about the asterisk-gui-commits mailing list