From: Mark Wells Date: Tue, 30 Jun 2015 16:56:46 +0000 (-0700) Subject: fix processing of aligns with agent-virt, #25944 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=a8bdd6bf5d005af9dff6b53047ba378ef6912302 fix processing of aligns with agent-virt, #25944 --- 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";