Skip to content

Commit 62e65aa

Browse files
committed
Newline as seperator for part properties in comment field, is now parsed correctly
1 parent dec8e8f commit 62e65aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Part.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ public function getProperties($use_description = true, $use_comment = true, $use
993993
$desc = PartProperty::parseDescription($this->getDescription());
994994
}
995995
if ($use_comment === true) {
996-
$comm = PartProperty::parseDescription($this->getComment());
996+
$comm = PartProperty::parseDescription($this->getComment(false));
997997
}
998998

999999
$arr = array_merge($name, $desc, $comm);

0 commit comments

Comments
 (0)