[hg] galaxy 3377: Fix for Display Applications viewing access pr...
details: http://www.bx.psu.edu/hg/galaxy/rev/465daec3fb8f changeset: 3377:465daec3fb8f user: Dan Blankenberg <dan@bx.psu.edu> date: Fri Feb 12 12:13:37 2010 -0500 description: Fix for Display Applications viewing access protected data. diffstat: lib/galaxy/datatypes/display_applications/parameters.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 0f4e5a057322 -r 465daec3fb8f lib/galaxy/datatypes/display_applications/parameters.py --- a/lib/galaxy/datatypes/display_applications/parameters.py Fri Feb 12 11:19:37 2010 -0500 +++ b/lib/galaxy/datatypes/display_applications/parameters.py Fri Feb 12 12:13:37 2010 -0500 @@ -140,7 +140,7 @@ self.parameter = parameter self.other_values = other_values self.trans = trans - self._dataset_hash, self._user_hash = encode_dataset_user( trans, self.other_values[ DEFAULT_DATASET_NAME ], trans.user ) + self._dataset_hash, self._user_hash = encode_dataset_user( trans, self.other_values[ DEFAULT_DATASET_NAME ], self.other_values[ DEFAULT_DATASET_NAME ].history.user ) def __str__( self ): return str( self.value ) def mime_type( self ):
participants (1)
-
Greg Von Kuster