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
|
|
@ -15,6 +15,7 @@
|
||||||
- fixed #9002: add a variant in admin product view misses i18n link
|
- fixed #9002: add a variant in admin product view misses i18n link
|
||||||
- fixed #9034: Removed all instances of srand. This is called implicitily by rand and be dangerous if called mulitple times by the same process.
|
- fixed #9034: Removed all instances of srand. This is called implicitily by rand and be dangerous if called mulitple times by the same process.
|
||||||
- fixed: DataForm now allows you to edit existing tabs
|
- fixed: DataForm now allows you to edit existing tabs
|
||||||
|
- fixed #9064: SQLReport now replaces field name spaces with hyphens for the direct access template params.
|
||||||
|
|
||||||
7.6.2
|
7.6.2
|
||||||
- fixed: not allowed to add calendar events if in can edit group but not can add event group
|
- fixed: not allowed to add calendar events if in can edit group but not can add event group
|
||||||
|
|
|
||||||
|
|
@ -680,7 +680,9 @@ sub _processQuery {
|
||||||
'field.value'=>$data->{$name}
|
'field.value'=>$data->{$name}
|
||||||
});
|
});
|
||||||
$colnum++;
|
$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
|
# Process nested query
|
||||||
if($nest && $self->{_query}{$nr + 1}{dbQuery}) {
|
if($nest && $self->{_query}{$nr + 1}{dbQuery}) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue