Better white space and wrapping
[squirrelmail.git] / templates / default / read_toolbar.tpl
index 615c4a1988917966c0339786cbdd0b3e70349eb5..395cd0fc3fdc23a6d1970e7064d8fde34be6b1bd 100644 (file)
@@ -13,7 +13,7 @@
  *          $link['Text'] - Text to be displayed for the action.
  *          $link['Target'] - Optional link target
  *
- * @copyright 1999-2009 The SquirrelMail Project Team
+ * @copyright 1999-2017 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
         }
     }