Commit 3a971de068d7c3016d2537664ab126fb3e288797
1 parent
c04d3395
Exists in
master
and in
29 other branches
[stoa] Returning homepage url instead of hash
(ActionItem2294)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
plugins/stoa/controllers/stoa_plugin_controller.rb
... | ... | @@ -13,7 +13,7 @@ class StoaPluginController < PublicController |
13 | 13 | :first_name => user.name.split(' ').first, |
14 | 14 | :surname => user.name.split(' ',2).last, |
15 | 15 | :address => user.person.address, |
16 | - :homepage => user.person.url, | |
16 | + :homepage => url_for(user.person.url), | |
17 | 17 | } |
18 | 18 | else |
19 | 19 | result = { :error => _('Incorrect user/password pair.') } | ... | ... |