diff --git a/templates/show_params.mako b/templates/show_params.mako
index dde5ea3cad9..f93f50eaa3c 100644
--- a/templates/show_params.mako
+++ b/templates/show_params.mako
@@ -109,7 +109,7 @@
%>
${inputs_recursive_indent( text=label, depth=depth )}
- | ${input.value_to_display_text( param_values[input.name], trans.app ) | h} |
+ ${input.value_to_display_text( param_values[input.name] ) | h} |
${ upgrade_messages.get( input.name, '' ) | h } |
%endif
diff --git a/templates/webapps/galaxy/workflow/display.mako b/templates/webapps/galaxy/workflow/display.mako
index 7d3726e1ddd..1214185ad17 100644
--- a/templates/webapps/galaxy/workflow/display.mako
+++ b/templates/webapps/galaxy/workflow/display.mako
@@ -64,7 +64,7 @@
select at runtime
%endif
%else:
- ${cgi.escape( param.value_to_display_text( value, app ) or 'Unavailable.' )}
+ ${cgi.escape( param.value_to_display_text( value ) or 'Unavailable.' )}
%endif
%if hasattr( step, 'upgrade_messages' ) and step.upgrade_messages and param.name in step.upgrade_messages: