bkruse: branch 1.4 r1760 - /branches/1.4/config/users.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Oct 30 13:33:33 CDT 2007
Author: bkruse
Date: Tue Oct 30 13:33:32 2007
New Revision: 1760
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1760
Log:
Fixed a quick bug reported by leonldf.
Thanks for taking the extra effort to find that
it was because your modules had a different style
of compilation which make show modules like codec_
return codec_blah without the .so.
(closes issue #11064)
Modified:
branches/1.4/config/users.html
Modified: branches/1.4/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/branches/1.4/config/users.html?view=diff&rev=1760&r1=1759&r2=1760
==============================================================================
--- branches/1.4/config/users.html (original)
+++ branches/1.4/config/users.html Tue Oct 30 13:33:32 2007
@@ -282,7 +282,7 @@
for(var i=0; resp[i] != undefined; i++) {
resp[i] = resp[i].split("_");
if(resp[i][1]) {
- resp[i][1] = resp[i][1].split(".");
+ resp[i][1] = resp[i][1].split(/[. ]/);
if(resp[i][1][0]) {
if(resp[i][1][0] == "a") {
continue; /* codec is a_mu, alaw to mulaw direct codec/decoder, not a codec preference. */
More information about the asterisk-gui-commits
mailing list