Lines 290-299
sub add_validate {
Link Here
|
290 |
my @content = $input->multi_param('content'); |
290 |
my @content = $input->multi_param('content'); |
291 |
my @lang = $input->multi_param('lang'); |
291 |
my @lang = $input->multi_param('lang'); |
292 |
for my $mtt ( @mtt ) { |
292 |
for my $mtt ( @mtt ) { |
293 |
my $is_html = $input->param("is_html_$mtt"); |
293 |
my $lang = shift @lang; |
|
|
294 |
my $is_html = $input->param("is_html_$mtt\_$lang"); |
294 |
my $title = shift @title; |
295 |
my $title = shift @title; |
295 |
my $content = shift @content; |
296 |
my $content = shift @content; |
296 |
my $lang = shift @lang; |
|
|
297 |
my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt, $lang ); |
297 |
my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt, $lang ); |
298 |
|
298 |
|
299 |
# getletter can return the default letter even if we pass a branchcode |
299 |
# getletter can return the default letter even if we pass a branchcode |
300 |
- |
|
|