commit/galaxy-central: jgoecks: Fix bug in setting dbkey for new track browser.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/572f0d4ed0ae/ changeset: 572f0d4ed0ae user: jgoecks date: 2012-09-19 04:33:49 summary: Fix bug in setting dbkey for new track browser. affected #: 1 file diff -r 8153e8d25009d71a523e0f2df24ed12922825d8f -r 572f0d4ed0ae934e1b2975a6a2940589fc593204 lib/galaxy/web/controllers/visualization.py --- a/lib/galaxy/web/controllers/visualization.py +++ b/lib/galaxy/web/controllers/visualization.py @@ -696,11 +696,11 @@ Display browser for the visualization denoted by id and add the datasets listed in `dataset_ids`. """ - # Display new browser if no id provided. + # Set up new browser if no id provided. if not id: return trans.fill_template( "tracks/browser.mako", config={}, add_dataset=kwargs.get("dataset_id", None), - default_dbkey=kwargs.get("default_dbkey", None) ) + default_dbkey=kwargs.get("dbkey", None) ) # Display saved visualization. vis = self.get_visualization( trans, id, check_ownership=False, check_accessible=True ) 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)
-
Bitbucket