Revision d629acd8
Von Sven Schöling vor etwa 18 Jahren hinzugefügt
bin/mozilla/arap.pl | ||
---|---|---|
#
|
||
|
||
# any custom scripts for this one
|
||
if (-f "$form->{path}/custom_arap.pl") {
|
||
eval { require "$form->{path}/custom_arap.pl"; };
|
||
if (-f "bin/mozilla/custom_arap.pl") {
|
||
eval { require "bin/mozilla/custom_arap.pl"; };
|
||
}
|
||
if (-f "$form->{path}/$form->{login}_arap.pl") {
|
||
eval { require "$form->{path}/$form->{login}_arap.pl"; };
|
||
if (-f "bin/mozilla/$form->{login}_arap.pl") {
|
||
eval { require "bin/mozilla/$form->{login}_arap.pl"; };
|
||
}
|
||
|
||
1;
|
Auch abrufbar als: Unified diff
$form->{path} entfernt und hardcodiert auf bin/mozilla gesetzt.
Vorlagen sind nicht betroffen, aber locales.pl schon.