From 0c5737e986695148c2ed76c3364d2d08ad8dc236 Mon Sep 17 00:00:00 2001 From: Piotr Adamski Date: Wed, 17 Dec 2008 17:15:04 +0100 Subject: [PATCH] Missing change in ContextController, that should be supplied with fix for Ticket #630 http://dev.rousette.org.uk/ticket/630 --- app/controllers/contexts_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/contexts_controller.rb b/app/controllers/contexts_controller.rb index 348151aa..2412ba95 100644 --- a/app/controllers/contexts_controller.rb +++ b/app/controllers/contexts_controller.rb @@ -23,6 +23,7 @@ class ContextsController < ApplicationController end def show + @contexts = current_user.contexts(true) if (@context.nil?) respond_to do |format| format.html { render :text => 'Context not found', :status => 404 }