Revision 9a578c8b
Von Jan Büren vor mehr als 11 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
614 | 614 |
map { $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys %::myconfig; |
615 | 615 |
} |
616 | 616 |
|
617 |
$additional_params->{"conf_webdav"} = $::lx_office_conf{features}->{webdav};
|
|
617 |
$additional_params->{"conf_webdav"} = $::instance_conf->get_webdav;
|
|
618 | 618 |
$additional_params->{"conf_latex_templates"} = $::lx_office_conf{print_templates}->{latex}; |
619 | 619 |
$additional_params->{"conf_opendocument_templates"} = $::lx_office_conf{print_templates}->{opendocument}; |
620 |
$additional_params->{"conf_vertreter"} = $::lx_office_conf{features}->{vertreter};
|
|
621 |
$additional_params->{"conf_parts_image_css"} = $::lx_office_conf{features}->{parts_image_css};
|
|
622 |
$additional_params->{"conf_parts_listing_images"} = $::lx_office_conf{features}->{parts_listing_images};
|
|
623 |
$additional_params->{"conf_parts_show_image"} = $::lx_office_conf{features}->{parts_show_image};
|
|
620 |
$additional_params->{"conf_vertreter"} = $::instance_conf->get_vertreter;
|
|
621 |
$additional_params->{"conf_parts_image_css"} = $::instance_conf->get_parts_image_css;
|
|
622 |
$additional_params->{"conf_parts_listing_images"} = $::instance_conf->get_parts_listing_images;
|
|
623 |
$additional_params->{"conf_parts_show_image"} = $::instance_conf->get_parts_show_image;
|
|
624 | 624 |
$additional_params->{"INSTANCE_CONF"} = $::instance_conf; |
625 | 625 |
|
626 | 626 |
if (my $debug_options = $::lx_office_conf{debug}{options}) { |
... | ... | |
1076 | 1076 |
$self->cleanup(); |
1077 | 1077 |
$self->error("$self->{IN} : " . $template->get_error()); |
1078 | 1078 |
} |
1079 |
|
|
1079 |
Common::copy_file_to_webdav_folder($self) if ($::instance_conf->get_webdav |
|
1080 |
and $::instance_conf->get_webdav_documents and not $self->{preview}); |
|
1080 | 1081 |
close OUT if $self->{OUT}; |
1081 | 1082 |
|
1082 | 1083 |
if ($self->{media} eq 'file') { |
Auch abrufbar als: Unified diff
Trac 2300 / 2301 zweiter Versuch
;-)