summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNigel Osborne <kiwi3685@me.com>2010-11-29 04:10:29 +0000
committerNigel Osborne <kiwi3685@me.com>2010-11-29 04:10:29 +0000
commit8e129a8df87a000ee8409be245cc50e6ebb264b3 (patch)
tree2e24cdd38986d58a0a12cb9c347136764b290b86
parentac76ee1460a699c6af6cf337d7085f5f991be2ce (diff)
downloadwebtrees-8e129a8df87a000ee8409be245cc50e6ebb264b3.tar.gz
webtrees-8e129a8df87a000ee8409be245cc50e6ebb264b3.tar.bz2
webtrees-8e129a8df87a000ee8409be245cc50e6ebb264b3.zip
Bug #682531 - NOTE concatenated to parent PLAC
-rw-r--r--includes/functions/functions_print.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_print.php b/includes/functions/functions_print.php
index 9cc0a1850a..9b0c840658 100644
--- a/includes/functions/functions_print.php
+++ b/includes/functions/functions_print.php
@@ -1720,7 +1720,7 @@ function format_fact_place(&$eventObj, $anchor=false, $sub=false, $lds=false) {
if (preg_match('/\d NOTE (.*)/', $placerec, $match)) {
ob_start();
print_fact_notes($placerec, 3);
- $html.=ob_get_contents();
+ $html.='<br />'.ob_get_contents();
ob_end_clean();
}
}