bkruse: branch 2.0 r4128 - /branches/2.0/config/users.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Nov 18 09:47:58 CST 2008
Author: bkruse
Date: Tue Nov 18 09:47:57 2008
New Revision: 4128
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4128
Log:
Minor syntax error. The error message is different than the comparing if statement.
Thanks for reporting this thias
(closes issue #13762)
Modified:
branches/2.0/config/users.html
Modified: branches/2.0/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/users.html?view=diff&rev=4128&r1=4127&r2=4128
==============================================================================
--- branches/2.0/config/users.html (original)
+++ branches/2.0/config/users.html Tue Nov 18 09:47:57 2008
@@ -402,7 +402,7 @@
return;
}
var tmp = ASTGUI.getFieldValue('edit_OutBoundCallerid') ;
- if( tmp && tmp.length < 3 ){
+ if( tmp && tmp.length < 2 ){
ASTGUI.highlightField('edit_OutBoundCallerid', "OutBound CallerId should be atleast 2 digits");
return;
}
More information about the asterisk-gui-commits
mailing list