Fixed Openness Issue

This commit is contained in:
saurabhbhatia 2013-11-04 15:41:23 +08:00
parent eaa87b3dd8
commit 1f3f9831ad
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ class ApplicationController < ActionController::Base
helper_attr :site_valid_locales
def check_backend_openness
if Site.first.backend_openness_on
if !Site.first.backend_openness_on
redirect_to '/users/sign_in' if not (authenticate_user! and is_member? )
end
end

View File

@ -130,7 +130,7 @@ class PagesController < ApplicationController
end
def check_frontend_open
if Site.first.frontend_open && current_user.nil? #Need to be change
if !Site.first.frontend_open && current_user.nil? #Need to be change
redirect_to '/admin/dashboards'
end
end

View File

@ -21,7 +21,7 @@
</li>
<!-- Desktop -->
<% if !@site.desktop_closed%>
<% if @site.desktop_closed%>
<li id="orbit-desktop">
<a href="<%= desktop_path %>" role="button">
<i class="icons-screen"></i> <span class="hide"><%= t(:desktop) %></span>