diff --git a/web/html/index.php b/web/html/index.php
index 895fc8af..54d60046 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -38,7 +38,7 @@ $result = db_query($q,$dbh);
# Table 2
print '
';
print '';
-print '';
+print ' | ';
print ' '.__("Recent Updates").' ';
print ' | ';
print '
';
@@ -51,7 +51,7 @@ while ($row = mysql_fetch_assoc($result)) {
print $row["Name"]." ".$row["Version"]."";
print '';
- print '';
+ print ' | ';
# figure out the mod string
$mod_int = intval($row["ModifiedTS"]);
@@ -124,7 +124,7 @@ if (!empty($user)) {
print "";
print "";
- print "";
+ print " | ";
print "".__("My Statistics")."";
print " | ";
print " ";
@@ -168,7 +168,7 @@ if (!empty($user)) {
print "";
print "";
-print "";
+print " | ";
print "".__("Statistics")."";
print " | ";
print " ";
|