[hg] galaxy 2626: Fix for sharing a history via a link.
details: http://www.bx.psu.edu/hg/galaxy/rev/4759e4bd03aa changeset: 2626:4759e4bd03aa user: Greg Von Kuster <greg@bx.psu.edu> date: Tue Aug 25 16:35:11 2009 -0400 description: Fix for sharing a history via a link. 1 file(s) affected in this change: lib/galaxy/web/controllers/history.py diffs (12 lines): diff -r 50e4baed24f5 -r 4759e4bd03aa lib/galaxy/web/controllers/history.py --- a/lib/galaxy/web/controllers/history.py Tue Aug 25 16:25:50 2009 -0400 +++ b/lib/galaxy/web/controllers/history.py Tue Aug 25 16:35:11 2009 -0400 @@ -298,7 +298,7 @@ user_history = trans.get_history() if not id: return trans.show_error_message( "You must specify a history you want to import." ) - import_history = get_history( trans, id ) + import_history = get_history( trans, id, check_ownership=False ) if not import_history: return trans.show_error_message( "The specified history does not exist.") if not import_history.importable:
participants (1)
-
Greg Von Kuster