Merged r11091 from trunk (#12711, #11290)

fix incorrect min_x_value of lib/SVG/Graph/TimeSeries.rb by r10439.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.2-stable@11093 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-01-03 00:15:32 +00:00
parent 3e4b36de83
commit a8fcf9389e

View File

@ -171,7 +171,7 @@ module SVG
protected
def min_x_value=(value)
@min_x_value = DateTime.parse( data[:data][i] ).to_time
@min_x_value = DateTime.parse( value ).to_time
end