Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 568004ba

Von Martin Helmling martin.helmling@octosoft.eu vor etwa 8 Jahren hinzugefügt

  • ID 568004bad2ee44969edd1f484d8020f4433dc233
  • Vorgänger 19ee5c1b
  • Nachfolger af131a46

Revert Revert "Anpassungen an neues SL::File::Object Interface"

Änderungen in Dateien ohne Compilerfehler wieder dazu

Unterschiede anzeigen:

SL/Controller/EmailJournal.pm
my $ref = \$attachment->content;
if ( $attachment->file_id > 0 ) {
my $file = SL::File->get(id => $attachment->file_id );
$ref = SL::File->get_content(dbfile => $file) if $file;
$ref = $file->get_content if $file;
}
$self->send_file($ref, name => $attachment->name, type => $attachment->mime_type);
}
SL/Form.pm
}
}
foreach my $attfile ( @attfiles ) {
push @{ $mail->{attachments} }, { path => SL::File->get_file_path(dbfile => $attfile),
push @{ $mail->{attachments} }, { path => $attfile->get_file,
id => $attfile->id,
type => $attfile->file_mime_type,
type => $attfile->mime_type,
name => $attfile->file_name };
}
}

Auch abrufbar als: Unified diff