Skip to content

Commit

Permalink
Fixed minor bug in curator worklist. Cherry-picked from 81fbac0
Browse files Browse the repository at this point in the history
  • Loading branch information
vitthalkudal committed May 25, 2011
1 parent 4539105 commit 55b663e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/user.rb
Expand Up @@ -660,7 +660,7 @@ def images_to_curate(options = {})
data_object_ids[index] = data_object
end
end
data_object_ids[start..last].collect!{|do_or_id| (do_or_id.class == DataObject) ? do_or_id : nil }
data_object_ids.collect!{|do_or_id| (do_or_id.class == DataObject) ? do_or_id : nil }

return data_object_ids
end
Expand Down

0 comments on commit 55b663e

Please sign in to comment.