Instiki 0.16.5
Update to Rails 2.3.2 (the stable Rails 2.3 release). Add audio/speex support Update CHANGELOG Bump version number
This commit is contained in:
parent
801d307405
commit
e2ccdfd812
264 changed files with 4850 additions and 1906 deletions
|
@ -479,7 +479,7 @@ module ActionMailer #:nodoc:
|
|||
)
|
||||
end
|
||||
unless @parts.empty?
|
||||
@content_type = "multipart/alternative"
|
||||
@content_type = "multipart/alternative" if @content_type !~ /^multipart/
|
||||
@parts = sort_parts(@parts, @implicit_parts_order)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1150,7 +1150,7 @@ if __FILE__ == $0
|
|||
assert_equal(Text::Format::JUSTIFY, @format_o.format_style)
|
||||
assert_match(/^of freedom, and that government of the people, by the people, for the$/,
|
||||
@format_o.format(GETTYSBURG).split("\n")[-3])
|
||||
assert_raises(ArgumentError) { @format_o.format_style = 33 }
|
||||
assert_raise(ArgumentError) { @format_o.format_style = 33 }
|
||||
end
|
||||
|
||||
def test_tag_paragraph
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActionMailer
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 2
|
||||
MINOR = 3
|
||||
TINY = 1
|
||||
TINY = 2
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue