[hg] galaxy 2466: Fix for popup menus on history grid - no longe...
details: http://www.bx.psu.edu/hg/galaxy/rev/539d481c8f59 changeset: 2466:539d481c8f59 user: Greg Von Kuster <greg@bx.psu.edu> date: Tue Jul 07 20:32:00 2009 -0400 description: Fix for popup menus on history grid - no longer necessary to encode ids in the template. 1 file(s) affected in this change: templates/history/grid.mako diffs (12 lines): diff -r 3bbb2d2caa5f -r 539d481c8f59 templates/history/grid.mako --- a/templates/history/grid.mako Tue Jul 07 14:48:01 2009 -0400 +++ b/templates/history/grid.mako Tue Jul 07 20:32:00 2009 -0400 @@ -168,7 +168,7 @@ <div popupmenu="grid-${i}-popup"> %for operation in grid.operations: %if operation.allowed( item ): - <a class="action-button" href="${url( operation=operation.label, id=trans.security.encode_id( item.id ) )}">${operation.label}</a> + <a class="action-button" href="${url( operation=operation.label, id=item.id )}">${operation.label}</a> %endif %endfor </div>
participants (1)
-
Greg Von Kuster