Revision 1b3ad794
Von Sven Schöling vor etwa 13 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
846 | 846 |
$additional_params->{"conf_payments_changeable"} = $::lx_office_conf{features}->{payments_changeable}; |
847 | 847 |
$additional_params->{"INSTANCE_CONF"} = $::instance_conf; |
848 | 848 |
|
849 |
if (%main::debug_options) {
|
|
850 |
map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
|
|
849 |
if (my $debug_options = $::lx_office_conf{debug}{options}) {
|
|
850 |
map { $additional_params->{'DEBUG_' . uc($_)} = $debug_options->{$_} } keys %$debug_options;
|
|
851 | 851 |
} |
852 | 852 |
|
853 | 853 |
if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) { |
Auch abrufbar als: Unified diff
%::debug_options => $::lx_office_conf->{debug}->{options}
Globale Hashes sind mit der jetzigen Konfiguration eh nicht schreibbar (zum
Glück) und der Standard benutzt das eh nicht. Wenn also einer das braucht,
bitte das benutzen.