Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Sibley <trs@bestpractical.com>2013-08-06 01:33:52 +0400
committerThomas Sibley <trs@bestpractical.com>2013-08-06 01:33:52 +0400
commit47044e6bff76c2b5b81edd706af7fda1482ec494 (patch)
treea4c7e64c47e2239c599a2edd971ab053238662b2
parent9338d0377ebac2f9ad5428c129594df9457c1a7a (diff)
parentf84d6372af5d7fe0e539a0f09cf087a434120cb1 (diff)
Merge branch '4.2/scalar-ref-actions'rt-4.1.19
-rw-r--r--share/html/Elements/ListActions3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/html/Elements/ListActions b/share/html/Elements/ListActions
index 805bd2ef21..014002a3d1 100644
--- a/share/html/Elements/ListActions
+++ b/share/html/Elements/ListActions
@@ -45,10 +45,11 @@
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
+% $m->out($$_) for grep {ref $_} @actions;
<div class="results">
<&| /Widgets/TitleBox, title => loc('Results'), %{$titlebox || {}} &>
<ul class="action-results">
-% foreach my $action (@actions) {
+% foreach my $action (grep {not ref $_} @actions) {
<li><%$action%></li>
% }
</ul>