rbrindley: branch 2.0 r4702 - in /branches/2.0/config: js/pbx2.js users.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Thu Apr 2 16:00:21 CDT 2009
Author: rbrindley
Date: Thu Apr 2 16:00:17 2009
New Revision: 4702
URL: http://svn.digium.com/svn-view/asterisk-gui?view=rev&rev=4702
Log:
- fixed an issue with pbx.queues.load, o->0
- fixed an issue with users not showing, )}; -> });
(closes issue #14814)
Reported by: f0ner00t
Modified:
branches/2.0/config/js/pbx2.js
branches/2.0/config/users.html
Modified: branches/2.0/config/js/pbx2.js
URL: http://svn.digium.com/svn-view/asterisk-gui/branches/2.0/config/js/pbx2.js?view=diff&rev=4702&r1=4701&r2=4702
==============================================================================
--- branches/2.0/config/js/pbx2.js (original)
+++ branches/2.0/config/js/pbx2.js Thu Apr 2 16:00:17 2009
@@ -565,7 +565,7 @@
* @return boolean of success.
*/
pbx.queues.load = function() {
- var cxt = context2json({ filename: 'extensions.conf', context: ASTGUI.contexts.QUEUES, usf:o});
+ var cxt = context2json({ filename: 'extensions.conf', context: ASTGUI.contexts.QUEUES, usf:0});
if (cxt === null) {
top.log.info('pbx.queues.load: context not found, lets create it!');
var ext_conf = new listofSynActions('extensions.conf');
Modified: branches/2.0/config/users.html
URL: http://svn.digium.com/svn-view/asterisk-gui/branches/2.0/config/users.html?view=diff&rev=4702&r1=4701&r2=4702
==============================================================================
--- branches/2.0/config/users.html (original)
+++ branches/2.0/config/users.html Thu Apr 2 16:00:17 2009
@@ -19,6 +19,8 @@
* at the top of the source tree.
*
-->
+<html>
+<head>
<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
<style type="text/css">
.no_obcid {
@@ -87,7 +89,7 @@
}
</style>
-
+</head>
<body bgcolor="#EFEFEF">
<div class="iframeTitleBar"> User Extensions on PBX
<span class='refresh_icon'> <img src="images/refresh.png" title=" Refresh " border=0 > </span>
@@ -533,7 +535,7 @@
});
$('#User_AdvancedEditButton').click(function() {
show_User_Edit_Advanced();
- )};
+ });
load_users_table();
@@ -543,3 +545,4 @@
});
</script>
</body>
+</html>
More information about the asterisk-gui-commits
mailing list