Skip to content

Commit

Permalink
Fix typo for css class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsuttor committed Feb 14, 2017
1 parent ebcd6d0 commit 63b2850
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changelog
0.8.48 (unreleased)
-------------------

- Nothing changed yet.
- Fix typo for css class.
[bsuttor]


0.8.47 (2017-02-13)
Expand Down
4 changes: 2 additions & 2 deletions cpskin/core/browser/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def bodyClass(self, template, view):
minisite = self.request.get('cpskin_minisite', None)
if minisite:
if minisite.is_in_minisite_mode:
body_class += ' in-ministe'
body_class += ' in-minisite-out-portal'
if minisite.is_in_portal_mode:
body_class += ' in-ministe-in-portal'
body_class += ' in-minisite-in-portal'

return body_class

0 comments on commit 63b2850

Please sign in to comment.