pari: branch 2.0 r3867 - /branches/2.0/config/preferences.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Sep 23 13:55:01 CDT 2008
Author: pari
Date: Tue Sep 23 13:55:00 2008
New Revision: 3867
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=3867
Log:
ASTGUI-41 : No varying or more than 5 digit extensions allowed
Modified:
branches/2.0/config/preferences.html
Modified: branches/2.0/config/preferences.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/preferences.html?view=diff&rev=3867&r1=3866&r2=3867
==============================================================================
--- branches/2.0/config/preferences.html (original)
+++ branches/2.0/config/preferences.html Tue Sep 23 13:55:00 2008
@@ -135,10 +135,10 @@
}
for( var i=0; i < arrF.length ; i++ ){
var tmp = ASTGUI.getFieldValue( arrF[i] );
- if( !tmp.length.isValueInBetween(2,5) ){
+ if( !tmp.length.isValueInBetween(2,6) ){
_$(arrF[i]).focus();
_$(arrF[i]).select();
- ASTGUI.feedback( { msg:'Extension should be 2 to 5 digits ', showfor:3 } );
+ ASTGUI.feedback( { msg:'Extension should be 2 to 6 digits ', showfor:3 } );
return false;
}
}
More information about the asterisk-gui-commits
mailing list