diff options
author | Mark Wells <mark@freeside.biz> | 2015-06-30 09:56:46 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-06-30 09:59:20 -0700 |
commit | a8bdd6bf5d005af9dff6b53047ba378ef6912302 (patch) | |
tree | 02bdc1cb762a8de6170845e626dc35022610540d | |
parent | cc577407362f8b64817afbe89d23888a0a5b63f9 (diff) |
fix processing of aligns with agent-virt, #25944
-rw-r--r-- | httemplate/search/elements/search.html | 12 |
1 files changed, 12 insertions, 0 deletions
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"; |