Browse code

fix for missing div

Jimako authored on 2024/04/22 10:19:24
Showing 1 changed files
... ...
@@ -27,7 +27,7 @@ if (isset($pagelinks['rss']))
27 27
     $output .= "<div id=\"pagetitle\">" . ($recentdays ? _RECENTSTORIES : _MOSTRECENT) . " " . $pagelinks['rss']['link'] . "</div>";
28 28
 }
29 29
 else {
30
-    $output .= "<div id=\"pagetitle\">" . ($recentdays ? _RECENTSTORIES : _MOSTRECENT);
30
+    $output .= "<div id=\"pagetitle\">" . ($recentdays ? _RECENTSTORIES : _MOSTRECENT) . "</div>";;
31 31
 }
32 32
 
33 33