diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-10-22 18:48:23 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-10-22 18:51:53 +0100 |
| commit | bcef4f0413d0b66e09939b60f63a2ed26f326718 (patch) | |
| tree | f74969e6e74dcff538e77a1669c7f4b97fcd72c9 /library | |
| parent | 045fc177e29bc483fa06d5c09f5146ed0f150c73 (diff) | |
| download | webtrees-bcef4f0413d0b66e09939b60f63a2ed26f326718.tar.gz webtrees-bcef4f0413d0b66e09939b60f63a2ed26f326718.tar.bz2 webtrees-bcef4f0413d0b66e09939b60f63a2ed26f326718.zip | |
Reports
Diffstat (limited to 'library')
| -rw-r--r-- | library/WT/Report/Base.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/WT/Report/Base.php b/library/WT/Report/Base.php index 56336a98be..d371d3488f 100644 --- a/library/WT/Report/Base.php +++ b/library/WT/Report/Base.php @@ -1521,7 +1521,7 @@ function repeatTagEndHandler() { * * @param array $attrs an array of key value pairs for the attributes */ -function varSHandler($attrs) { +function varStartHandler($attrs) { // @deprecated global $currentElement, $type, $parser; // Retrievable variables @@ -1772,7 +1772,7 @@ function setVarStartHandler($attrs) { * * @param array $attrs an array of key value pairs for the attributes */ -function ifSHandler($attrs) { +function ifStartHandler($attrs) { global $vars, $gedrec, $processIfs, $fact, $desc, $generation; if ($processIfs > 0) { @@ -1829,7 +1829,7 @@ function ifSHandler($attrs) { /** * XML <if /> end element */ -function ifEHandler() { +function ifEndHandler() { global $processIfs; if ($processIfs > 0) { $processIfs--; @@ -1957,7 +1957,7 @@ function ageAtDeathStartHandler() { * XML element Forced line break handler - HTML code * */ -function brSHandler() { +function brStartHandler() { global $printData, $currentElement, $processGedcoms; if ($printData && ($processGedcoms == 0)) { $currentElement->addText('<br>'); @@ -1967,7 +1967,7 @@ function brSHandler() { /** * XML <sp />element Forced space handler */ -function spSHandler() { +function spStartHandler() { global $printData, $currentElement, $processGedcoms; if ($printData && ($processGedcoms == 0)) { $currentElement->addText(' '); |
