Happy New Year
[squirrelmail.git] / templates / default / read_toolbar.tpl
index af1b7a94f1c518c9693faac5f584f146c667fda4..0013a49be7cb747e27a69dabc5f4a845e1f04d4b 100644 (file)
@@ -13,7 +13,7 @@
  *          $link['Text'] - Text to be displayed for the action.
  *          $link['Target'] - Optional link target
  *
- * @copyright 1999-2014 The SquirrelMail Project Team
+ * @copyright 1999-2020 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
@@ -34,14 +34,11 @@ extract($t);
         if (empty($link['Text']))
             continue;
             
-            ?>
- <a href="<?php echo $link['URL']; ?>"<?php echo (empty($link['Target'])?'':' target="' . $link['Target'] . '"')?>><?php echo $link['Text']; ?></a>
-            <?php
+            ?><a href="<?php echo $link['URL']; ?>"<?php echo (empty($link['Target'])?'':' target="' . $link['Target'] . '"')?> style="white-space: nowrap;"><?php echo $link['Text']; ?></a><?php
         
         # Spit out a divider between each element
         if ($count < count($links)-1) {
-            ?>
- &nbsp;|&nbsp;
+            ?>&nbsp;|
             <?php
         }
     }