summaryrefslogtreecommitdiff
path: root/app/controllers/content_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/content_controller.rb')
-rw-r--r--app/controllers/content_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/content_controller.rb b/app/controllers/content_controller.rb
index 706cfcd..d548a34 100644
--- a/app/controllers/content_controller.rb
+++ b/app/controllers/content_controller.rb
@@ -10,7 +10,7 @@ class ContentController < ApplicationController
10 10
11 @page = Node.find_page(path) 11 @page = Node.find_page(path)
12 12
13 if @page 13 if @page and @page.public?
14 template = @page.valid_template 14 template = @page.valid_template
15 15
16 render( 16 render(
@@ -25,4 +25,5 @@ class ContentController < ApplicationController
25 end 25 end
26 26
27 end 27 end
28
28end 29end