Skip to content

Commit

Permalink
Fixed issue #16480: Empty/invalid brand/background logo causes loops …
Browse files Browse the repository at this point in the history
…on the welcome page

Dev This fixes only the output part. A proper way for saving the path/Url still needs to be fixed.
  • Loading branch information
c-schmitz committed Mar 31, 2021
1 parent 53171bf commit ebcbc49
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -24,7 +24,7 @@

{# Custom backgroud option #}
<style>
{% if (aSurveyInfo.options.backgroundimage == "on" ) %}
{% if (aSurveyInfo.options.backgroundimage == "on" and imageSrc(aSurveyInfo.options.backgroundimagefile )) %}
body {
background-image: url({{ imageSrc(aSurveyInfo.options.backgroundimagefile ) }});
background-attachment: fixed;
Expand Down

0 comments on commit ebcbc49

Please sign in to comment.