]> git.mjollnir.org Git - moodle.git/commitdiff
Fixing a notice for Tim
authormoodler <moodler>
Tue, 7 Jul 2009 07:43:36 +0000 (07:43 +0000)
committermoodler <moodler>
Tue, 7 Jul 2009 07:43:36 +0000 (07:43 +0000)
lib/outputlib.php

index 1a050032ef22e7da09f97ea5eaefd66eb29af061..62db77ab9874f206162913ff9f645626e9b2d2a3 100644 (file)
@@ -543,7 +543,7 @@ class theme_config {
         if (file_exists($filename)) {
             ob_start();
             include_once($filename);
-            $metatags .= ob_get_contents();
+            $metatags = ob_get_contents();
             ob_end_clean();
         }
         return $metatags;
@@ -2590,4 +2590,4 @@ function output_css_for_css_edit($files, $toreplace) {
         }
         echo "/* @end */\n\n";
     }
-}
\ No newline at end of file
+}