diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-29 22:20:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-29 22:20:43 +0000 |
commit | 7fb03b1ca30a49dcfbd0b4d3c0ce250ba8cc6002 (patch) | |
tree | 8de289f15cf1a15846259db066967861cede06b4 /app/controllers/feeds_controller.rb | |
parent | 97f6315bd0c321ebaa2e8ec9d26344405f5e0e39 (diff) | |
download | redmine-7fb03b1ca30a49dcfbd0b4d3c0ce250ba8cc6002.tar.gz redmine-7fb03b1ca30a49dcfbd0b4d3c0ce250ba8cc6002.zip |
Fixed: error on csv/pdf export and feeds (oracle)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@556 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/feeds_controller.rb')
-rw-r--r-- | app/controllers/feeds_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/feeds_controller.rb b/app/controllers/feeds_controller.rb index 214f80c95..bf03acbc9 100644 --- a/app/controllers/feeds_controller.rb +++ b/app/controllers/feeds_controller.rb @@ -92,7 +92,7 @@ private # global feed scope = ["#{Project.table_name}.is_public=?", true] end - @find_options = {:conditions => scope, :limit => Setting.feeds_limit} + @find_options = {:conditions => scope, :limit => Setting.feeds_limit.to_i} return true end end |