aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-12-20 12:25:07 +0000
committerStruan Donald <struan@exo.org.uk>2012-12-20 12:25:07 +0000
commit49f95c42d3320835d2f6fe9f8227186e52f20112 (patch)
treef96309f4dfe8bb41071ae670a2c5c1da54fd4891
parent0f3a0dedc60fca8dd408659c620d97a77485042d (diff)
do not blank bodyclass if it exists
-rw-r--r--templates/web/seesomething/set_body_class.html2
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' ) %]