Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
fix(forms): use correct input value for location
Browse files Browse the repository at this point in the history
  • Loading branch information
hypeJunction committed Mar 22, 2017
1 parent 9d5e7cc commit b1ae1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/default/forms/wall/status.php
Expand Up @@ -87,7 +87,7 @@
}

if (elgg_get_plugin_setting('geopositioning', 'hypeWall')) {
$value = $entity ? $entity->location : get_input('address');
$value = $entity ? $entity->location : get_input('location');
$find_me = elgg_view('output/url', [
'href' => '#',
'text' => elgg_echo('wall:find_me'),
Expand Down

0 comments on commit b1ae1e3

Please sign in to comment.