bkruse: trunk r1761 - in /trunk: ./ config/users.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Oct 30 13:34:03 CDT 2007
Author: bkruse
Date: Tue Oct 30 13:34:02 2007
New Revision: 1761
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1761
Log:
Merged revisions 1760 via svnmerge from
https://origsvn.digium.com/svn/asterisk-gui/branches/1.4
........
r1760 | bkruse | 2007-10-30 13:33:32 -0500 (Tue, 30 Oct 2007) | 9 lines
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:
trunk/ (props changed)
trunk/config/users.html
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/users.html?view=diff&rev=1761&r1=1760&r2=1761
==============================================================================
--- trunk/config/users.html (original)
+++ trunk/config/users.html Tue Oct 30 13:34:02 2007
@@ -303,7 +303,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