rbrindley: branch 2.0 r4826 - /branches/2.0/config/js/incoming.js
    SVN commits to the Asterisk-GUI project 
    asterisk-gui-commits at lists.digium.com
       
    Tue Jun  2 16:18:06 CDT 2009
    
    
  
Author: rbrindley
Date: Tue Jun  2 16:18:03 2009
New Revision: 4826
URL: http://svn.asterisk.org/svn-view/asterisk-gui?view=rev&rev=4826
Log:
- fixed an pipe/comma issue that caused time intervals not to show in 1.4
  installations
Modified:
    branches/2.0/config/js/incoming.js
Modified: branches/2.0/config/js/incoming.js
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/js/incoming.js?view=diff&rev=4826&r1=4825&r2=4826
==============================================================================
--- branches/2.0/config/js/incoming.js (original)
+++ branches/2.0/config/js/incoming.js Tue Jun  2 16:18:03 2009
@@ -186,7 +186,7 @@
 
 				// If is a TimeInterval Context
 				if( did_this_rule.beginsWith( 'include=' ) && did_this_rule.contains( '_' + ASTGUI.contexts.TimeIntervalPrefix ) ){
-					var THIS_TRUNK_TIMEFRAME_CONTEXT = did_this_rule.betweenXY('=', ',');
+					var THIS_TRUNK_TIMEFRAME_CONTEXT = did_this_rule.betweenXY('=', top.session.delimiter);
 					var THIS_TIMEFRAME = THIS_TRUNK_TIMEFRAME_CONTEXT.lChop( ASTGUI.contexts.TrunkDIDPrefix + this_trunk + '_' + ASTGUI.contexts.TimeIntervalPrefix );
 					if( ! EX_CF.hasOwnProperty( THIS_TRUNK_TIMEFRAME_CONTEXT ) ){ return ; }
 
    
    
More information about the asterisk-gui-commits
mailing list