commit/galaxy-central: martenson: repair the newly introduced bug with registration warning message throwing error in toolshed, now it is disabled there
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/22cfae4b6a22/ Changeset: 22cfae4b6a22 User: martenson Date: 2013-09-24 23:01:23 Summary: repair the newly introduced bug with registration warning message throwing error in toolshed, now it is disabled there Affected #: 1 file diff -r 6838d5bb7e557ae6b5118dd6f76749dd5a6e31fb -r 22cfae4b6a227c385146d5d71c49a663809244e8 lib/galaxy/webapps/galaxy/controllers/user.py --- a/lib/galaxy/webapps/galaxy/controllers/user.py +++ b/lib/galaxy/webapps/galaxy/controllers/user.py @@ -637,12 +637,13 @@ user_type_fd_id = trans.security.encode_id( user_type_form_definition.id ) user_type_fd_id_select_field = self.__build_user_type_fd_id_select_field( trans, selected_value=user_type_fd_id ) widgets = self.__get_widgets( trans, user_type_form_definition, user=None, **kwd ) + # Warning message that is shown on the registration page. + registration_warning_message = trans.app.config.registration_warning_message else: user_type_fd_id_select_field = None user_type_form_definition = None widgets = [] - # Warning message that is shown on the registration page. - registration_warning_message = trans.app.config.registration_warning_message + registration_warning_message = None return trans.fill_template( '/user/register.mako', cntrller=cntrller, email=email, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org