Commit 5fed30ba8850bf5b501fd110e3ab9b13faa6b161
1 parent
ad280d90
Exists in
master
and in
28 other branches
ActionItem1165: identifying not logged in users
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/layouts/application.rhtml
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | # Identify the current controller and action for the CSS: |
40 | 40 | " controller_"+ @controller.controller_name() + |
41 | 41 | " action_"+ @controller.controller_name() +"_"+ @controller.action_name() + |
42 | - (logged_in? ? ' logged-in' : '') | |
42 | + (logged_in? ? ' logged-in' : 'not-logged-in') | |
43 | 43 | %>' onload='noosfero_init();' |
44 | 44 | help=<%= _('Pass the mouse over page elements to get help on them. Click the question mark icon on the top-right corner to deactivate this help window.').inspect %> onresize="registerDocumentSize()"> |
45 | 45 | <script type="text/javascript"> | ... | ... |