From 6da013bf6cdae202fff1110779e69f0bbeac30af Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 2 Dec 2017 18:14:31 -0600 Subject: [PATCH] Fix permission bug for executing multiple batch results --- tailbone/templates/batch/index.mako | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tailbone/templates/batch/index.mako b/tailbone/templates/batch/index.mako index ef0651d4..876adccf 100644 --- a/tailbone/templates/batch/index.mako +++ b/tailbone/templates/batch/index.mako @@ -3,7 +3,7 @@ <%def name="extra_javascript()"> ${parent.extra_javascript()} - % if master.results_executable and request.has_perm('{}.execute_results'.format(permission_prefix)): + % if master.results_executable and request.has_perm('{}.execute_multiple'.format(permission_prefix)):