pari: trunk r192 - in /trunk/config: home.html sysinfo.html
asterisk-gui-commits at lists.digium.com
asterisk-gui-commits at lists.digium.com
Thu Dec 21 10:13:06 MST 2006
Author: pari
Date: Thu Dec 21 11:13:05 2006
New Revision: 192
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=192
Log:
Displaying the revision number properly in sysnfo
Modified:
trunk/config/home.html
trunk/config/sysinfo.html
Modified: trunk/config/home.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/home.html?view=diff&rev=192&r1=191&r2=192
==============================================================================
--- trunk/config/home.html (original)
+++ trunk/config/home.html Thu Dec 21 11:13:05 2006
@@ -129,7 +129,7 @@
}
if( $('secret').value == "" ){
- alert("Please enter a Secret");
+ alert("Please enter a password");
$('secret').focus();
return true;
}
Modified: trunk/config/sysinfo.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/sysinfo.html?view=diff&rev=192&r1=191&r2=192
==============================================================================
--- trunk/config/sysinfo.html (original)
+++ trunk/config/sysinfo.html Thu Dec 21 11:13:05 2006
@@ -41,7 +41,8 @@
}else if ( t.name == 'asterisk' && x==undefined ){ // if is a category
return t.name;
}else if( t.name == 'asterisk' ){ // if is a subcategory
- $('asterisk').innerHTML = t.fields[x] +"<BR>" + "Asterisk GUI-version "+ asterisk_guiversion ;
+ asterisk_guiversion = asterisk_guiversion.slice(0, -1);
+ $('asterisk').innerHTML = t.fields[x] +"<BR>" + "Asterisk GUI-version " + asterisk_guiversion.substr(1) ;
}else if ( t.name == 'today' && x==undefined ){ // if is a category
return t.name;
}else if( t.name == 'today' ){ // if is a subcategory
More information about the asterisk-gui-commits
mailing list