Skip to content

Commit

Permalink
Upper/lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Roach committed Jul 3, 2018
1 parent 989c11f commit 97b8ee3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/Module/OpenStreetMapModule.php
Expand Up @@ -128,8 +128,8 @@ public function getConfigLink() {
*/
public function getChartMenu(Individual $individual) {
return new Menu(
I18N::translate('Pedigree Map'),
route('module', ['module' => $this->getName(), 'action' => 'Pedigreemap', 'xref' => $individual->getXref()]),
I18N::translate('Pedigree map'),
route('module', ['module' => $this->getName(), 'action' => 'PedigreeMap', 'xref' => $individual->getXref()]),
'menu-chart-pedigreemap',
['rel' => 'nofollow']
);
Expand Down Expand Up @@ -561,7 +561,7 @@ function ($item) {
* @return object
* @throws \Exception
*/
public function getPedigreemapAction(Request $request) {
public function getPedigreeMapAction(Request $request) {
/** @var Tree $tree */
$tree = $request->attributes->get('tree');
$xref = $request->get('xref');
Expand Down
2 changes: 1 addition & 1 deletion resources/views/modules/openstreetmap/pedigreemap.php
Expand Up @@ -7,7 +7,7 @@
<form class="wt-page-options wt-page-options-pedigreemap-chart d-print-none">
<input type="hidden" name="route" value="module">
<input type="hidden" name="module" value="<?= $module ?>">
<input type="hidden" name="action" value="Pedigreemap">
<input type="hidden" name="action" value="PedigreeMap">
<input type="hidden" name="ged" value="<?= e($tree->getName()) ?>">

<div class="form-group row">
Expand Down

0 comments on commit 97b8ee3

Please sign in to comment.