Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 1b3ad794

Von Sven Schöling vor etwa 13 Jahren hinzugefügt

  • ID 1b3ad7949687a373d832e0447f772e86363525f5
  • Vorgänger 2cd68ea4
  • Nachfolger 2d7159c4

%::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.

Unterschiede anzeigen:

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