Browse Source

1. there is no <nobr> in html 4.01 specs.
2. formating looks bad when user has longer clock format or "Last refresh"
string + clock does not fit in default frame width

tokul 21 years ago
parent
commit
714a71f932
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/left_main.php

+ 2 - 2
src/left_main.php

@@ -1007,8 +1007,8 @@ if ($date_format != 6) {
     }
     $clk = str_replace(' ','&nbsp;',$clk);
 
-    echo '<nobr><small>' . str_replace(' ','&nbsp;',_("Last Refresh")) .
-         ": $clk</small></nobr><br />";
+    echo '<small>' . str_replace(' ','&nbsp;',_("Last Refresh")) .
+         ":<br />$clk</small><br />";
 }
 
 /* Next, display the refresh button. */