Browse Source

Fix issue with progress bar not updating percentage - refs CT#7439

Yannick Warnier 10 years ago
parent
commit
ce6314e89d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/newscorm/learnpath.class.php

+ 1 - 1
main/newscorm/learnpath.class.php

@@ -2430,7 +2430,7 @@ class learnpath
     {
         $text = $percentage . $text_add;
         $output = '<div class="progress">
-                        <div id="progress_bar_value" class="bar" style="width: '.$text.';"><span>'. $text .'</span></div>
+                        <div id="progress_bar_value" class="bar" style="width: '.$text.';"><span id="progress_text">'. $text .'</span></div>
                     </div>';
 
         return $output;