SQLReport now replaces field name spaces with hyphens for the direct access template params.
This commit is contained in:
parent
43c5e5e63d
commit
b65c907040
2 changed files with 4 additions and 1 deletions
|
|
@ -680,7 +680,9 @@ sub _processQuery {
|
|||
'field.value'=>$data->{$name}
|
||||
});
|
||||
$colnum++;
|
||||
$row{$prefix.'row.field.'.$name.'.value'} = $data->{$name};
|
||||
my $tmpl_name = $name;
|
||||
$tmpl_name =~ s/\ /-/g;
|
||||
$row{$prefix.'row.field.'.$tmpl_name.'.value'} = $data->{$name};
|
||||
}
|
||||
# Process nested query
|
||||
if($nest && $self->{_query}{$nr + 1}{dbQuery}) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue