Fehler in der Defaults.pm?

Hilfe zu Znuny Problemen aller Art
Locked
uwed
Znuny newbie
Posts: 1
Joined: 09 Dec 2008, 10:46

Fehler in der Defaults.pm?

Post by uwed »

Hallo heiße Uwe,

beschäftige mich erst seit kurzrm mit OTRS...

Meine ein "Fehlerchen" in der Defaults.pm gefunden zu haben...

und zwar Zeile: 2286 + 2291

------------------------Snip-------------------------------------

else {
print STDERR "ERROR: Can't read $Self->{Home}/RELEASE: $! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die;
}
}
else {
print STDERR "ERROR: $Self->{Home}/RELEASE does not exist! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die;
}

-----------------------Snip-Ende-------------------------------

müsste es nicht heißen:

###########################

else {
print STDERR "ERROR: Can't read $Self->{Home}/RELEASE: $! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die "ERROR: $!\n";
}
}
else {
print STDERR "ERROR: $Self->{Home}/RELEASE does not exist! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die "ERROR: $!\n";
}

###########################


Grüße

Uwe
Locked