diff options
| -rw-r--r-- | app/Functions/FunctionsPrintFacts.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Functions/FunctionsPrintFacts.php b/app/Functions/FunctionsPrintFacts.php index dacce3899d..37f190d165 100644 --- a/app/Functions/FunctionsPrintFacts.php +++ b/app/Functions/FunctionsPrintFacts.php @@ -211,7 +211,10 @@ class FunctionsPrintFacts // Print the place of this fact/event echo '<div class="place">', FunctionsPrint::formatFactPlace($fact, true, true, true), '</div>'; // A blank line between the primary attributes (value, date, place) and the secondary ones - echo '<br>'; + + if ($value !== '' || $fact->attribute('PLAC') !== '' || $fact->attribute('DATE') !== '') { + echo '<br>'; + } $addr = $fact->attribute('ADDR'); if ($addr !== '') { |
