Skip to content

Commit

Permalink
#1901 error in error handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Roach committed Sep 13, 2018
1 parent c3283ed commit fbb7c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/AdminLocationController.php
Expand Up @@ -463,7 +463,7 @@ function (array $a, array $b) {
$added + $updated === 0 ? 'info' : 'success'
);
} else {
throw new Exception('Unable to open file: %s', $filename);
throw new Exception('Unable to open file: ' . $filename);
}

$url = route('map-data', ['parent_id' => $parent_id]);
Expand Down
2 changes: 1 addition & 1 deletion resources/views/admin/map-import-form.php
Expand Up @@ -18,7 +18,7 @@
<div class="input-group" dir="ltr">
<div class="input-group-prepend">
<span class="input-group-text">
<?= WT_DATA_DIR . '/places/' ?>
<?= WT_DATA_DIR . 'places/' ?>
</span>
</div>
<select id="serverfile" name="serverfile" class="form-control">
Expand Down

0 comments on commit fbb7c24

Please sign in to comment.