Hi,
after installing your plugin i got an sql error on postgresql 8.3. I posted a patch too because in postgresql || is used for string concatenation. I don't know if works in mysql!
bye
claudio
diff --git a/app/controllers/sprints_controller.rb b/app/controllers/sprints_controller.rb
index 3f4eb7f..4aebe8e 100755
--- a/app/controllers/sprints_controller.rb
+++ b/app/controllers/sprints_controller.rb
@@ -28,7 +28,7 @@ class SprintsController < ApplicationController
def show
unless @sprint.nil?
@unassigned_tasks = Issue.find(:all,
- :conditions => ["user_story_id IS NULL AND (fixed_version_id = ? || project_id = ?)", @sprint.id, @project.id ])
+ :conditions => ["user_story_id IS NULL AND (fixed_version_id = ? OR project_id = ?)", @sprint.id, @project.id ])
@issue_statuses = IssueStatus.find(:all)
@project_users = User.find(:all, :joins => :members, :conditions => ["members.project_id = ?", @project.id])
Hi, after installing your plugin i got an sql error on postgresql 8.3. I posted a patch too because in postgresql || is used for string concatenation. I don't know if works in mysql! bye claudio