add missing br between attributes in documentListRow()

This commit is contained in:
Uwe Steinmann 2016-08-05 17:46:51 +02:00
parent 5e1bba10ce
commit f67f30717c

View File

@ -3719,7 +3719,7 @@ $('body').on('click', '[id^=\"table-row-folder\"] td:nth-child(2)', function(ev)
$content .= "".$arr[1]."<br />";
} else {
$content .= "".htmlspecialchars($attrdef->getName()).": ";
$content .= $this->printAttributeValue($attribute, true);
$content .= $this->printAttributeValue($attribute, true)."<br />";
}
}
}