bkruse: branch asterisknow r1762 - in /branches/asterisknow: ./ config/

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Oct 30 13:34:20 CDT 2007


Author: bkruse
Date: Tue Oct 30 13:34:19 2007
New Revision: 1762

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1762
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:
    branches/asterisknow/   (props changed)
    branches/asterisknow/config/users.html

Propchange: branches/asterisknow/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: branches/asterisknow/config/users.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/users.html?view=diff&rev=1762&r1=1761&r2=1762
==============================================================================
--- branches/asterisknow/config/users.html (original)
+++ branches/asterisknow/config/users.html Tue Oct 30 13:34:19 2007
@@ -317,7 +317,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