From f67f30717cfe0e3331f607a4036d2e896725edd5 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 bcc56ddbe..387acb16a 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -3719,7 +3719,7 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev) $content .= "".$arr[1]."
"; } else { $content .= "".htmlspecialchars($attrdef->getName()).": "; - $content .= $this->printAttributeValue($attribute, true); + $content .= $this->printAttributeValue($attribute, true)."
"; } } }