Revision 4bacfb02
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
SL/Auth.pm | ||
---|---|---|
121 | 121 |
|
122 | 122 |
if (!$self->{authenticator}) { |
123 | 123 |
my $locale = Locale->new('en'); |
124 |
$self->mini_error($locale->text('No or an unknown authenticantion module specified in "config/lx_office.conf".'));
|
|
124 |
$self->mini_error($locale->text('No or an unknown authenticantion module specified in "config/kivitendo.conf".'));
|
|
125 | 125 |
} |
126 | 126 |
|
127 | 127 |
my $cfg = $self->{DB_config}; |
128 | 128 |
|
129 | 129 |
if (!$cfg) { |
130 | 130 |
my $locale = Locale->new('en'); |
131 |
$self->mini_error($locale->text('config/lx_office.conf: Key "DB_config" is missing.'));
|
|
131 |
$self->mini_error($locale->text('config/kivitendo.conf: Key "DB_config" is missing.'));
|
|
132 | 132 |
} |
133 | 133 |
|
134 | 134 |
if (!$cfg->{host} || !$cfg->{db} || !$cfg->{user}) { |
135 | 135 |
my $locale = Locale->new('en'); |
136 |
$self->mini_error($locale->text('config/lx_office.conf: Missing parameters in "authentication/database". Required parameters are "host", "db" and "user".'));
|
|
136 |
$self->mini_error($locale->text('config/kivitendo.conf: Missing parameters in "authentication/database". Required parameters are "host", "db" and "user".'));
|
|
137 | 137 |
} |
138 | 138 |
|
139 | 139 |
$self->{authenticator}->verify_config(); |
Auch abrufbar als: Unified diff
Hinweise auf lx_office.conf in kivitendo.conf geändert
Fixt #2031.