Revision 8cd05ad6
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
SL/User.pm | ||
---|---|---|
145 | 145 |
} |
146 | 146 |
|
147 | 147 |
# update the tables |
148 |
if (!open(FH, ">$main::userspath/nologin")) {
|
|
148 |
if (!open(FH, ">" . $::lx_office_conf{paths}->{userspath} . "/nologin")) {
|
|
149 | 149 |
$form->show_generic_error($main::locale->text('A temporary file could not be created. ' . |
150 | 150 |
'Please verify that the directory "#1" is writeable by the webserver.', |
151 |
$main::userspath),
|
|
151 |
$::lx_office_conf{paths}->{userspath}),
|
|
152 | 152 |
'back_button' => 1); |
153 | 153 |
} |
154 | 154 |
|
... | ... | |
166 | 166 |
close(FH); |
167 | 167 |
|
168 | 168 |
# remove lock file |
169 |
unlink("$main::userspath/nologin");
|
|
169 |
unlink($::lx_office_conf{paths}->{userspath} . "/nologin");
|
|
170 | 170 |
|
171 | 171 |
my $menufile = |
172 | 172 |
$self->{"menustyle"} eq "v3" ? "menuv3.pl" : |
Auch abrufbar als: Unified diff
Globale Variablen $::userspath, $::templates, $::membersfile nach %::lx_office_conf verschoben