From 58828c9836a47ad335b4dd9d5bd59339c50bba76 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 26 Oct 2019 17:52:40 +0200 Subject: [PATCH] line break issue fixed --- lam/lib/lists.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index f9733877..089e6c84 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -421,7 +421,7 @@ class lamList { */ private function getSortingElements() { $filter = $this->getFilterAsTextForURL(); - $sortElements = array(new htmlOutputText(_('Sort sequence'))); + $sortElements = array(new htmlSpan(new htmlOutputText(_('Sort sequence')), array('nowrap'))); foreach ($this->attrArray as $attributeName) { $link = "list.php?type=" . $this->type->getId() . "&". "sort=" . strtolower($attributeName) . $filter . "&norefresh=y";