pari: branch 2.0 r3783 - /branches/2.0/config/js/index.js

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Sep 9 11:24:52 CDT 2008


Author: pari
Date: Tue Sep  9 11:24:51 2008
New Revision: 3783

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=3783
Log:

 removing unnecessary quotes



Modified:
    branches/2.0/config/js/index.js

Modified: branches/2.0/config/js/index.js
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/js/index.js?view=diff&rev=3783&r1=3782&r2=3783
==============================================================================
--- branches/2.0/config/js/index.js (original)
+++ branches/2.0/config/js/index.js Tue Sep  9 11:24:51 2008
@@ -217,7 +217,7 @@
 
 		ASTGUI.dialog.waitWhile('Checking write permission for gui folder');
 		var rand_1 = Math.round(100000*Math.random());
-		ASTGUI.systemCmdWithOutput( "echo '" + rand_1 + "'" , function(s){
+		ASTGUI.systemCmdWithOutput( 'echo ' + rand_1  , function(s){
 			if( !s.contains(rand_1) ){
 				ASTGUI.dialog.alertmsg( 'Asterisk needs write privileges on ' + ASTGUI.paths['guiInstall'] );
 			}




More information about the asterisk-gui-commits mailing list