diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-07-15 14:25:35 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-07-15 14:26:37 +0100 |
| commit | aa22a75ef1cb7faaeb6d3b029ed97a3d1f41fc89 (patch) | |
| tree | fa88e2db4b219d2e6f120372f9cafce4b0097373 /app/Report | |
| parent | d9f2b8189141ebfecbc6851f15fd4a3533d66396 (diff) | |
| download | webtrees-aa22a75ef1cb7faaeb6d3b029ed97a3d1f41fc89.tar.gz webtrees-aa22a75ef1cb7faaeb6d3b029ed97a3d1f41fc89.tar.bz2 webtrees-aa22a75ef1cb7faaeb6d3b029ed97a3d1f41fc89.zip | |
PHP5.3 closure workaround
Diffstat (limited to 'app/Report')
| -rw-r--r-- | app/Report/ReportParserGenerate.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Report/ReportParserGenerate.php b/app/Report/ReportParserGenerate.php index e01b556753..4a6a5c9346 100644 --- a/app/Report/ReportParserGenerate.php +++ b/app/Report/ReportParserGenerate.php @@ -109,8 +109,9 @@ class ReportParserGenerate extends ReportParserBase { /** @var ReportBase Nested report elements */ private $wt_report; + /** @todo This attribute is public to support the PHP5.3 closure workaround. */ /** @var string[][] Variables defined in the report at run-time */ - private $vars; + public $vars; /** * Create a parser for a report |
