1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-29 19:00:26 +02:00

Fix for corrupted page totals due to SEF URLs and shortened array keys. Requires more testing. BACKUP FIRST!

This commit is contained in:
Cameron
2016-01-21 13:36:02 -08:00
parent 1ac5a2af23
commit 39aac804df
8 changed files with 195 additions and 31 deletions

View File

@@ -270,7 +270,10 @@ $(document).ready(function()
// alert(data);
$("#"+target).css('width', data+'%'); // update the progress bar width */
$("#"+target).html(data+'%'); // display the numeric value */
data = parseInt(data);
if(data > 99.999) {
clearInterval(progresspump);