diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-06-09 14:24:26 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-06-09 14:24:44 +0100 |
| commit | 1e46f848c48b7a33da24e897167adf7cef7bec6f (patch) | |
| tree | fb757fc2fa3e66aef0c78c27a0333bcf2bf548df | |
| parent | b4004b8ca34efd06dfae3ca494117d7eeb3057b4 (diff) | |
| download | webtrees-1e46f848c48b7a33da24e897167adf7cef7bec6f.tar.gz webtrees-1e46f848c48b7a33da24e897167adf7cef7bec6f.tar.bz2 webtrees-1e46f848c48b7a33da24e897167adf7cef7bec6f.zip | |
Lifespan - leave family checkbox empty
| -rw-r--r-- | app/Controller/LifespanController.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/Controller/LifespanController.php b/app/Controller/LifespanController.php index c6017206ca..53bd656787 100644 --- a/app/Controller/LifespanController.php +++ b/app/Controller/LifespanController.php @@ -61,9 +61,6 @@ class LifespanController extends PageController { /** @var string Chart parameter */ public $subtitle = ' '; - /** @var string Chart parameter */ - public $showDetails; - /** @var Individual[] A list of individuals to display. */ private $people = array(); @@ -117,7 +114,6 @@ class LifespanController extends PageController { parent::__construct(); $this->setPageTitle(I18N::translate('Lifespans')); - $this->showDetails = $WT_TREE->getPreference('PEDIGREE_FULL_DETAILS') ? 'checked' : ''; $this->facts = explode('|', WT_EVENTS_BIRT . '|' . WT_EVENTS_DEAT . '|' . WT_EVENTS_MARR . '|' . WT_EVENTS_DIV); $tmp = explode('\\', get_class(I18N::defaultCalendar())); |
