@@ -228,7 +228,7 @@ |
||
228 | 228 | 'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles())->integer('style'), |
229 | 229 | 'width' => Validator::parsedBody($request)->isBetween(self::MINIMUM_WIDTH, self::MAXIMUM_WIDTH)->integer('width'), |
230 | 230 | 'xref' => Validator::parsedBody($request)->isXref()->string('xref'), |
231 | - ])); |
|
231 | + ])); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | Auth::checkComponentAccess($this, ModuleChartInterface::class, $tree, $user); |
@@ -3,6 +3,6 @@ |
||
3 | 3 | declare(strict_types=1); |
4 | 4 | |
5 | 5 | return array ( |
6 | - '%H:%i:%s' => '%g:%i:%s %a', |
|
7 | - '%j %F %Y' => '%F %j, %Y', |
|
6 | + '%H:%i:%s' => '%g:%i:%s %a', |
|
7 | + '%j %F %Y' => '%F %j, %Y', |
|
8 | 8 | ); |
@@ -113,8 +113,8 @@ discard block |
||
113 | 113 | $show_dead_people = Validator::parsedBody($request)->string('SHOW_DEAD_PEOPLE'); |
114 | 114 | $show_living_names = Validator::parsedBody($request)->string('SHOW_LIVING_NAMES'); |
115 | 115 | $show_private_relationships = Validator::parsedBody($request)->string('SHOW_PRIVATE_RELATIONSHIPS'); |
116 | - $show_source_detail_toggles = Validator::parsedBody($request)->string('SHOW_SOURCE_DETAIL_TOGGLES'); |
|
117 | - $show_source_titles = Validator::parsedBody($request)->string('SHOW_SOURCE_TITLES'); |
|
116 | + $show_source_detail_toggles = Validator::parsedBody($request)->string('SHOW_SOURCE_DETAIL_TOGGLES'); |
|
117 | + $show_source_titles = Validator::parsedBody($request)->string('SHOW_SOURCE_TITLES'); |
|
118 | 118 | |
119 | 119 | $tree->setPreference('HIDE_LIVE_PEOPLE', $hide_live_people); |
120 | 120 | $tree->setPreference('KEEP_ALIVE_YEARS_BIRTH', (string) $keep_alive_years_birth); |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | $tree->setPreference('SHOW_DEAD_PEOPLE', $show_dead_people); |
125 | 125 | $tree->setPreference('SHOW_LIVING_NAMES', $show_living_names); |
126 | 126 | $tree->setPreference('SHOW_PRIVATE_RELATIONSHIPS', $show_private_relationships); |
127 | - $tree->setPreference('SHOW_SOURCE_DETAIL_TOGGLES', $show_source_detail_toggles); |
|
128 | - $tree->setPreference('SHOW_SOURCE_TITLES', $show_source_titles); |
|
127 | + $tree->setPreference('SHOW_SOURCE_DETAIL_TOGGLES', $show_source_detail_toggles); |
|
128 | + $tree->setPreference('SHOW_SOURCE_TITLES', $show_source_titles); |
|
129 | 129 | |
130 | 130 | FlashMessages::addMessage(I18N::translate('The preferences for the family tree ā%sā have been updated.', e($tree->title())), 'success'); |
131 | 131 |