[Scummvm-cvs-logs] SF.net SVN: scummvm:[34618] web/trunk/include/html.php

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sat Sep 20 18:14:04 CEST 2008


Revision: 34618
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34618&view=rev
Author:   fingolfin
Date:     2008-09-20 16:14:03 +0000 (Sat, 20 Sep 2008)

Log Message:
-----------
WEB: When inserting multiple CSS files, don't insert multiple Atom/RSS feed refs (silly bug :)

Modified Paths:
--------------
    web/trunk/include/html.php

Modified: web/trunk/include/html.php
===================================================================
--- web/trunk/include/html.php	2008-09-20 16:10:29 UTC (rev 34617)
+++ web/trunk/include/html.php	2008-09-20 16:14:03 UTC (rev 34618)
@@ -16,9 +16,9 @@
 <?php
   foreach ($extra_css as $css_file) {
     echo '<link rel="stylesheet" href="./' . $css_file . '" type="text/css">'."\n";
-    echo '<link rel="alternate" type="application/atom+xml" title="ScummVM Atom news feed" href="http://www.scummvm.org/feed-atom.php">'."\n";
-    echo '<link rel="alternate" type="application/rss+xml" title="ScummVM RSS news feed" href="http://www.scummvm.org/feed-rss20.php">'."\n";
   }
+  echo '<link rel="alternate" type="application/atom+xml" title="ScummVM Atom news feed" href="http://www.scummvm.org/feed-atom.php">'."\n";
+  echo '<link rel="alternate" type="application/rss+xml" title="ScummVM RSS news feed" href="http://www.scummvm.org/feed-rss20.php">'."\n";
 
   echo "<title>$title</title>\n";
 ?>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list