pari: branch asterisknow r2088 - /branches/asterisknow/config/users.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Mon Jan 7 16:15:48 CST 2008
Author: pari
Date: Mon Jan 7 16:15:47 2008
New Revision: 2088
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=2088
Log:
Fix for BE-292
Brandon and I have attempted to solve this bug
twice before - both of them did not work all the time.
So this is more like a bruteforce way of making sure that
the signalling type is set 'ALL' the time and not just
when a new user is created.
Modified:
branches/asterisknow/config/users.html
Modified: branches/asterisknow/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/users.html?view=diff&rev=2088&r1=2087&r2=2088
==============================================================================
--- branches/asterisknow/config/users.html (original)
+++ branches/asterisknow/config/users.html Mon Jan 7 16:15:47 2008
@@ -174,7 +174,6 @@
}
}
tmp.name = x
- tmp.signalling = "fxo_ks";
return tmp;
}
@@ -269,9 +268,13 @@
_$('codecs_text').innerHTML = 'disallow: '+ _$('disallow').value + ' <BR> allow:' + _$('allow').value ;
}
+
callbacks.savechanges = function(){
-
-}
+ var y = _$('name').value ;
+ var uri1 = build_action('update', 0 , y , 'signalling', 'fxo_ks'); // set the signalling to fxo_ks
+ makerequest( 'u', 'users.conf' , uri1 , function(t){ } );
+}
+
function dialplans_loaded(b){
var c = b ;
More information about the asterisk-gui-commits
mailing list