diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-03-28 18:12:37 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-03-28 18:12:37 +0100 |
| commit | 5ea0274c3f5db035482501b3793ae8daa8c27be4 (patch) | |
| tree | 3070c9582d1c7904c908fd4aea2554a2a2cabd84 /app/Functions | |
| parent | fd1f045d3bca96a1079727d0cf336bc1086a9899 (diff) | |
| download | webtrees-5ea0274c3f5db035482501b3793ae8daa8c27be4.tar.gz webtrees-5ea0274c3f5db035482501b3793ae8daa8c27be4.tar.bz2 webtrees-5ea0274c3f5db035482501b3793ae8daa8c27be4.zip | |
Fix #858 - suppress level 2 _UID
Diffstat (limited to 'app/Functions')
| -rw-r--r-- | app/Functions/FunctionsPrintFacts.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Functions/FunctionsPrintFacts.php b/app/Functions/FunctionsPrintFacts.php index c9bd4e88c0..e144ff3b44 100644 --- a/app/Functions/FunctionsPrintFacts.php +++ b/app/Functions/FunctionsPrintFacts.php @@ -384,6 +384,9 @@ class FunctionsPrintFacts { case 'SOUR': // These will be shown at the end break; + case '_UID': + // These shouldn't be displayed at all. + break; case 'EVEN': // 0 SOUR / 1 DATA / 2 EVEN / 3 DATE / 3 PLAC $events = array(); foreach (preg_split('/ *, */', $match[2]) as $event) { |
