@@ -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 | ); |
@@ -346,7 +346,7 @@ |
||
346 | 346 | '_MBON', |
347 | 347 | '_NMR', |
348 | 348 | '_SEPR', |
349 | - '_SP_DEAT', // only used internally, not exported to a gedcom file |
|
349 | + '_SP_DEAT', // only used internally, not exported to a gedcom file |
|
350 | 350 | ]; |
351 | 351 | |
352 | 352 | public const CUSTOM_INDIVIDUAL_TAGS = [ |
@@ -1154,7 +1154,7 @@ discard block |
||
1154 | 1154 | if (!empty($attrs['truncate'])) { |
1155 | 1155 | $value = strip_tags($value); |
1156 | 1156 | if ( (int) $attrs['truncate'] > 0 ) |
1157 | - $value = Str::limit($value, (int) $attrs['truncate'], I18N::translate('…')); |
|
1157 | + $value = Str::limit($value, (int) $attrs['truncate'], I18N::translate('…')); |
|
1158 | 1158 | } |
1159 | 1159 | $this->current_element->addText($value); |
1160 | 1160 | } |
@@ -1703,7 +1703,7 @@ discard block |
||
1703 | 1703 | $value = "0"; |
1704 | 1704 | } |
1705 | 1705 | if ( isset($attrs['trim']) ) { |
1706 | - $value = str_replace($attrs['trim'], '', $value); |
|
1706 | + $value = str_replace($attrs['trim'], '', $value); |
|
1707 | 1707 | } |
1708 | 1708 | if (preg_match("/\\$(\w+)/", $name, $match)) { |
1709 | 1709 | $name = $this->vars["'" . $match[1] . "'"]['id']; |
@@ -3030,7 +3030,7 @@ discard block |
||
3030 | 3030 | $child->generation = $list[$id]->generation ?? 1; |
3031 | 3031 | if ( $child->xref() != $person->xref() ) |
3032 | 3032 | $this->mfrelation[$child->xref()] = $this->mfrelation[$id] . "x"; |
3033 | - } |
|
3033 | + } |
|
3034 | 3034 | } |
3035 | 3035 | } |
3036 | 3036 | } |
@@ -327,7 +327,7 @@ |
||
327 | 327 | $element->render($renderer); |
328 | 328 | // If tcpdf has added a new page the left margin must be restored |
329 | 329 | if ($cPT != $renderer->tcpdf->getPage()) |
330 | - $renderer->tcpdf->setLeftMargin($cMT['left']); |
|
330 | + $renderer->tcpdf->setLeftMargin($cMT['left']); |
|
331 | 331 | } elseif ($element === 'footnotetexts') { |
332 | 332 | $renderer->footnotes(); |
333 | 333 | } elseif ($element === 'addpage') { |