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