Revision c7f9da81
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
386 | 386 |
|
387 | 387 |
if ($ENV{HTTP_USER_AGENT}) { |
388 | 388 |
|
389 |
if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) { |
|
390 |
$stylesheet = |
|
391 |
qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet"> |
|
392 |
|; |
|
389 |
my $stylesheets = "$self->{stylesheet} $self->{stylesheets}"; |
|
390 |
|
|
391 |
$stylesheets =~ s|^\s*||; |
|
392 |
$stylesheets =~ s|\s*$||; |
|
393 |
foreach my $file (split m/\s+/, $stylesheets) { |
|
394 |
$file =~ s|.*/||; |
|
395 |
next if (! -f "css/$file"); |
|
396 |
|
|
397 |
$stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|; |
|
393 | 398 |
} |
394 | 399 |
|
395 | 400 |
$self->{favicon} = "favicon.ico" unless $self->{favicon}; |
Auch abrufbar als: Unified diff
Umstellung der Kontenübersicht auf die Verwendung von "Template".