Fixed: error on csv/pdf export and feeds (oracle)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@556 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
97f6315bd0
commit
7fb03b1ca3
|
@ -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
|
||||
|
|
|
@ -297,7 +297,7 @@ class ProjectsController < ApplicationController
|
|||
@issues = Issue.find :all, :order => sort_clause,
|
||||
:include => [ :assigned_to, :author, :status, :tracker, :priority, :project, {:custom_values => :custom_field} ],
|
||||
:conditions => @query.statement,
|
||||
:limit => Setting.issues_export_limit
|
||||
:limit => Setting.issues_export_limit.to_i
|
||||
|
||||
ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
|
||||
export = StringIO.new
|
||||
|
@ -356,7 +356,7 @@ class ProjectsController < ApplicationController
|
|||
@issues = Issue.find :all, :order => sort_clause,
|
||||
:include => [ :author, :status, :tracker, :priority, :project, :custom_values ],
|
||||
:conditions => @query.statement,
|
||||
:limit => Setting.issues_export_limit
|
||||
:limit => Setting.issues_export_limit.to_i
|
||||
|
||||
@options_for_rfpdf ||= {}
|
||||
@options_for_rfpdf[:file_name] = "export.pdf"
|
||||
|
|
Loading…
Reference in New Issue