diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-02-12 08:47:58 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-02-12 08:47:58 +0000 |
| commit | 3bda86beb2feb75d952e216b04792de5e3781c74 (patch) | |
| tree | 3268c2a148e1f29a570e77b4d66c1ec145cb3673 | |
| parent | 288566a3b078696471bb91cfff1b6bdf61289c3f (diff) | |
| download | webtrees-3bda86beb2feb75d952e216b04792de5e3781c74.tar.gz webtrees-3bda86beb2feb75d952e216b04792de5e3781c74.tar.bz2 webtrees-3bda86beb2feb75d952e216b04792de5e3781c74.zip | |
Fix #434 - wrong label in config options
| -rw-r--r-- | admin_trees_config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin_trees_config.php b/admin_trees_config.php index 951716fb40..b137e49d1c 100644 --- a/admin_trees_config.php +++ b/admin_trees_config.php @@ -540,7 +540,7 @@ $controller </div> </div> <div class="col-sm-8"> - <?php echo select_edit_control('SHOW_PRIVATE_RELATIONSHIPS', array('0' => I18N::translate('Hide from everyone'), '1' => I18N::translate('Show to members')), null, $WT_TREE->getPreference('SHOW_PRIVATE_RELATIONSHIPS'), 'class="form-control"'); ?> + <?php echo select_edit_control('SHOW_PRIVATE_RELATIONSHIPS', array('0' => I18N::translate('Hide from everyone'), '1' => I18N::translate('Show to visitors')), null, $WT_TREE->getPreference('SHOW_PRIVATE_RELATIONSHIPS'), 'class="form-control"'); ?> <p class="small text-muted"> <?php echo /* I18N: Help text for the “Show private relationships” configuration setting */ I18N::translate('This option will retain family links in private records. This means that you will see empty “private” boxes on the pedigree chart and on other charts with private individuals.'); ?> </p> |
