From c0d149e9dcdd408a3c6eca506539e68718d642a9 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 5 Aug 2016 17:46:51 +0200 Subject: [PATCH] add missing br between attributes in documentListRow() --- views/bootstrap/class.Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 8ad11b847..2e4eca044 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -2187,7 +2187,7 @@ $(document).ready( function() { $content .= "".$arr[1]."
"; } else { $content .= "".htmlspecialchars($attrdef->getName()).": "; - $content .= $this->printAttributeValue($attribute, true); + $content .= $this->printAttributeValue($attribute, true)."
"; } } }