Drop unused style span. Fixes.
authorsoranzo <soranzo>
Thu, 23 Sep 2004 12:06:46 +0000 (12:06 +0000)
committersoranzo <soranzo>
Thu, 23 Sep 2004 12:06:46 +0000 (12:06 +0000)
classes/Misc.php
intro.php

index 456188e86ff0abfbb5e5255d892cb1ad5af9df15..711b5a4170ab1508985a6efefdb2cf98e1fbe801 100644 (file)
@@ -2,7 +2,7 @@
        /**
         * Class to hold various commonly used functions
         *
-        * $Id: Misc.php,v 1.92 2004/09/07 14:00:26 jollytoad Exp $
+        * $Id: Misc.php,v 1.93 2004/09/23 12:06:46 soranzo Exp $
         */
         
        class Misc {
                                        echo ">\n";
                                } else {
                                        echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
-                                       echo "<html";
+                                       echo "<html lang=\"{$lang['applocale']}\"";
                                        if (strcasecmp($lang['applangdir'], 'ltr') != 0) echo " dir=\"", htmlspecialchars($lang['applangdir']), "\"";
                                        echo ">\n";
                                }
                        echo "<div class=\"trail\">";
                        
                        foreach ($trail as $crumb) {
-                               echo "<span class=\"crumb\">";
-                               
                                $crumblink = "<a";
                                
                                if (isset($crumb['url']))
                                else
                                        echo $crumblink;
                                
-                               echo "</span>{$lang['strseparator']}";
+                               echo "{$lang['strseparator']}";
                        }
                        
                        echo "</div>\n";
index 9128230d32405c093e230601c8b139c00af4f9b2..b0ed37ba4ad076603742cba944f426b4b636cc6b 100755 (executable)
--- a/intro.php
+++ b/intro.php
@@ -3,7 +3,7 @@
        /**
         * Intro screen
         *
-        * $Id: intro.php,v 1.10 2003/12/17 09:11:32 chriskl Exp $
+        * $Id: intro.php,v 1.11 2004/09/23 12:06:46 soranzo Exp $
         */
 
        // Include application functions (no db conn)
@@ -31,7 +31,6 @@
 <li><b><a href="<?php echo $lang['strviewfaq_url'] ?>" target="_top"><?php echo $lang['strviewfaq'] ?></a></b></li>
 </ul>
 
-</p>
 <?php
        $misc->printFooter();
 ?>