Lines 260-266
sub add_validate {
Link Here
|
260 |
my @content = $input->param('content'); |
260 |
my @content = $input->param('content'); |
261 |
for my $mtt ( @mtt ) { |
261 |
for my $mtt ( @mtt ) { |
262 |
my $is_html = $input->param("is_html_$mtt"); |
262 |
my $is_html = $input->param("is_html_$mtt"); |
263 |
my $is_tt = $input->param("is_tt_$mtt"); |
263 |
my $is_tt = $input->param("is_tt_$mtt") ? 1 : 0; |
264 |
my $title = shift @title; |
264 |
my $title = shift @title; |
265 |
my $content = shift @content; |
265 |
my $content = shift @content; |
266 |
my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt); |
266 |
my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt); |
267 |
- |
|
|