Skip to content

Commit

Permalink
Merge pull request #8378 from ehuelsmann/fix/1.11/outstanding-summary…
Browse files Browse the repository at this point in the history
…-report

Fix the outstanding summary report generation
  • Loading branch information
ehuelsmann authored Aug 20, 2024
2 parents 4f43702 + c121e7e commit 87a07e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/LedgerSMB/Template.pm
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ sub _render {
%{ preprocess($vars, sub { $self->{format_plugin}->escape(@_) } ) },
%{$self->{additional_vars} // {}},
%$cvars,
escape => $escape,
escape => sub { $self->{format_plugin}->escape(@_) },
text => sub {
return $self->{format_plugin}->escape($self->_maketext(@_));
},
Expand Down
2 changes: 1 addition & 1 deletion templates/lib/dynatable.tex
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
UNLESS loop.first();
' & ';
END;
COL.name;
escape(COL.name);
END;
END;
-?>\tabularnewline
Expand Down

0 comments on commit 87a07e1

Please sign in to comment.