home » zplus/freepost.git
Author zPlus <zplus@peers.community> 2018-07-25 05:45:58
Committer zPlus <zplus@peers.community> 2018-07-25 05:45:58
Commit a263e27 (patch)
Tree feae4f6
Parent(s)

Fix redirect on new account controller. modified: freepost/__init__.py


commits diff: bd265f4..a263e27
1 file changed, 1 insertion, 1 deletiondownload


Diffstat
-rwxr-xr-x freepost/__init__.py 2

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+1/-1 M   freepost/__init__.py
index 6b15c49..01b2c0c
old size: 25K - new size: 25K
@@ -259,7 +259,7 @@ def register_new_account ():
259 259 session.start (user['id'])
260 260
261 261 # ... and go to the homepage of the new user
262 - redirect (application.get_url ('user'))
262 + redirect (application.get_url ('user_settings'))
263 263
264 264 @get ('/logout', name='logout')
265 265 @requires_login