pari: branch 2.0 r4005 - /branches/2.0/config/followme.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Wed Oct 22 16:09:28 CDT 2008
Author: pari
Date: Wed Oct 22 16:09:28 2008
New Revision: 4005
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4005
Log:
Fix for AA50-2298 : Dial outside number in FollowMe has problem with hyphen
Modified:
branches/2.0/config/followme.html
Modified: branches/2.0/config/followme.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/followme.html?view=diff&rev=4005&r1=4004&r2=4005
==============================================================================
--- branches/2.0/config/followme.html (original)
+++ branches/2.0/config/followme.html Wed Oct 22 16:09:28 2008
@@ -415,6 +415,7 @@
}
var tmp_number = ASTGUI.getFieldValue('FMU_newNumber_External');
}
+ if( tmp_number.contains('-') ) tmp_number = tmp_number.withOut('-');
var tmp_dest = tmp_number + ',' + tmp_seconds;
if( _$('newFM_Order_radio_after').checked ){
More information about the asterisk-gui-commits
mailing list