]> git.mjollnir.org Git - moodle.git/commitdiff
Don't cache that string. :-)
authormoodler <moodler>
Sat, 29 Jan 2005 10:03:00 +0000 (10:03 +0000)
committermoodler <moodler>
Sat, 29 Jan 2005 10:03:00 +0000 (10:03 +0000)
course/lib.php

index c3a4f3521260658aea1550893fd9cea4b7c056f0..a1a2bba0be1664e34f83336e41045f998619ad8e 100644 (file)
@@ -958,7 +958,6 @@ function print_section($course, $section, $mods, $modnamesused, $absolute=false,
     static $strmovehere;
     static $strmovefull;
     static $strunreadpostsone;
-    static $strunreadpostsnumber;
 
     $labelformatoptions = New stdClass;
 
@@ -973,7 +972,6 @@ function print_section($course, $section, $mods, $modnamesused, $absolute=false,
             $strmovefull = strip_tags(get_string("movefull", "", "'$USER->activitycopyname'"));
         }
         $strunreadpostsone    = get_string('unreadpostsone', 'forum');
-        $strunreadpostsnumber = get_string('unreadpostsnumber', 'forum');
     }
     $labelformatoptions->noclean = true;
 
@@ -1049,6 +1047,7 @@ function print_section($course, $section, $mods, $modnamesused, $absolute=false,
                     if ($unread == 1) {
                         echo '<span class="unread"> '.$strunreadpostsone.' </span>';
                     } else if ($unread) {
+                        $strunreadpostsnumber = get_string('unreadpostsnumber', 'forum', $unread);
                         echo '<span class="unread"> '.$strunreadpostsnumber.' </span>';
                     }
                 }