Commit 45b69c4a authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixed an error on issue feeds.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1106 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent bea49ae2
......@@ -271,7 +271,7 @@ private
# Retrieve query from session or build a new query
def retrieve_query
if params[:query_id]
if !params[:query_id].blank?
@query = Query.find(params[:query_id], :conditions => {:project_id => (@project ? @project.id : nil)})
session[:query] = {:id => @query.id, :project_id => @query.project_id}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment