Do not set portal background in CSS if no value is configured (#1643)

This commit is contained in:
Clément OUDOT 2019-02-05 18:39:43 +01:00
parent deac8a7f92
commit 8ca60a9238

View File

@ -793,13 +793,16 @@ sub sendHtml {
sub sendCss {
my ( $self, $req ) = @_;
my $s =
my $s = '/* LL::NG Portal CSS */';
if ( $self->conf->{portalSkinBackground} ) {
$s .=
'html,body{background:url("'
. $self->staticPrefix
. '/common/backgrounds/'
. $self->conf->{portalSkinBackground}
. '") no-repeat center fixed;'
. 'background-size:cover;}';
}
return [
200,
[