Revision 285446a6
Von Cem Aydin vor 10 Monaten hinzugefügt
SL/Controller/ListTransactions.pm | ||
---|---|---|
16 | 16 |
use SL::Locale::String; |
17 | 17 |
use SL::SessionFile::Random; |
18 | 18 |
use SL::Helper::Flash qw(flash); |
19 |
use SL::Presenter::EscapedText qw(escape); |
|
19 | 20 |
|
20 | 21 |
use SL::Presenter::DatePeriod qw(get_dialog_defaults_from_report_generator |
21 | 22 |
populate_hidden_variables); |
... | ... | |
188 | 189 |
sub set_title { |
189 | 190 |
my ($self) = @_; |
190 | 191 |
my $account = first { $_->{accno} eq $::form->{accno} } @{ $self->accounts_list }; |
191 |
$self->title(join(" ", t8('List Transactions'), t8('Account'), $account->{text}));
|
|
192 |
$self->title(escape(join(" ", t8('List Transactions'), t8('Account'), $account->{text})));
|
|
192 | 193 |
} |
193 | 194 |
|
194 | 195 |
sub set_dates { |
Auch abrufbar als: Unified diff
Berichte Buchungsliste: Titel escapen
Titel muss escaped werden da Sonderzeichen in der Kontonummer/
Beschreibung möglich sind.