diff options
author | Struan Donald <struan@exo.org.uk> | 2012-12-20 12:25:07 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-12-20 12:25:07 +0000 |
commit | 49f95c42d3320835d2f6fe9f8227186e52f20112 (patch) | |
tree | f96309f4dfe8bb41071ae670a2c5c1da54fd4891 | |
parent | 0f3a0dedc60fca8dd408659c620d97a77485042d (diff) |
do not blank bodyclass if it exists
-rw-r--r-- | templates/web/seesomething/set_body_class.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/seesomething/set_body_class.html b/templates/web/seesomething/set_body_class.html index 4018ba11a..b613706f2 100644 --- a/templates/web/seesomething/set_body_class.html +++ b/templates/web/seesomething/set_body_class.html @@ -1 +1 @@ -[% bodyclass = 'mappage' IF !bodyclass %] +[% bodyclass = ( bodyclass ? bodyclass : 'mappage' ) %] |