details: http://www.bx.psu.edu/hg/galaxy/rev/68eaeb1b1d69 changeset: 3417:68eaeb1b1d69 user: jeremy goecks jeremy.goecks@emory.edu date: Fri Feb 19 11:29:25 2010 -0500 description: Fix bug so that, when a user submits edits to a page's attributes, he is redicted to his page list.
diffstat:
lib/galaxy/web/controllers/page.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diffs (14 lines):
diff -r d995557d383b -r 68eaeb1b1d69 lib/galaxy/web/controllers/page.py --- a/lib/galaxy/web/controllers/page.py Fri Feb 19 10:01:33 2010 -0500 +++ b/lib/galaxy/web/controllers/page.py Fri Feb 19 11:29:25 2010 -0500 @@ -409,8 +409,8 @@ page.title = page_title page.slug = page_slug session.flush() - # Display the management page - return trans.response.send_redirect( web.url_for( action='index' ) ) + # Redirect to page list. + return trans.response.send_redirect( web.url_for( action='list' ) ) else: page_title = page.title page_slug = page.slug
galaxy-dev@lists.galaxyproject.org