pari: trunk r532 - in /trunk/config: backup.html record.html

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Wed Mar 28 22:32:09 MST 2007


Author: pari
Date: Thu Mar 29 00:32:08 2007
New Revision: 532

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=532
Log:
Fix for invalid S.No's

Modified:
    trunk/config/backup.html
    trunk/config/record.html

Modified: trunk/config/backup.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/backup.html?view=diff&rev=532&r1=531&r2=532
==============================================================================
--- trunk/config/backup.html (original)
+++ trunk/config/backup.html Thu Mar 29 00:32:08 2007
@@ -100,7 +100,7 @@
 	newRow.onmouseout=function(){ this.style.backgroundColor='#FFFFFF'; };
 	
 	var newCell0 = newRow.insertCell(0);
-	newCell0 .innerHTML = i+1 ;
+	newCell0 .innerHTML =_$('bkpfilesTable').rows.length  ;
 	newCell0 .width = 35;
 	newCell0.align = "center";
 	

Modified: trunk/config/record.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/record.html?view=diff&rev=532&r1=531&r2=532
==============================================================================
--- trunk/config/record.html (original)
+++ trunk/config/record.html Thu Mar 29 00:32:08 2007
@@ -81,7 +81,7 @@
 	newRow.onmouseout=function(){ this.style.backgroundColor='#FFFFFF'; };
 	
 	var newCell0 = newRow.insertCell(0);
-	newCell0.innerHTML = i+1 ;
+	newCell0.innerHTML =_$('recfilesTable').rows.length ;
 	newCell0.width = 35;
 	newCell0.align = "center";
 	



More information about the asterisk-gui-commits mailing list