From a8bdd6bf5d005af9dff6b53047ba378ef6912302 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Tue, 30 Jun 2015 09:56:46 -0700 Subject: [PATCH] fix processing of aligns with agent-virt, #25944 --- httemplate/search/elements/search.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/httemplate/search/elements/search.html b/httemplate/search/elements/search.html index 80bc89d3e..c58e63698 100644 --- a/httemplate/search/elements/search.html +++ b/httemplate/search/elements/search.html @@ -245,6 +245,18 @@ $opt{disable_download} = 0 $opt{disable_download} = 1 if $opt{really_disable_download}; +# split/map aligns here, so that agent_virt can add a column +# (search-html.html will split aligns also if they aren't already split) +my %align = ( + 'l' => 'left', + 'r' => 'right', + 'c' => 'center', + ' ' => '', + '.' => '', +); +$opt{align} = [ map $align{$_}, split(//, $opt{align}) ], + unless !$opt{align} || ref($opt{align}); + # get our queries ready my $query = $opt{query} or die "query required"; my $count_query = $opt{count_query} or die "count_query required"; -- 2.11.0