Compare commits

..

2 Commits

Author SHA1 Message Date
Jean-Philippe Lang
e045f0b3b5 tagged version 2.1.5
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/2.1.5@11048 e93f8b46-1217-0410-a6f0-8f06a7374b81
2012-12-18 12:57:45 +00:00
Jean-Philippe Lang
e64ba44fca tagged version 2.1.5
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/2.1.5@11044 e93f8b46-1217-0410-a6f0-8f06a7374b81
2012-12-18 12:42:42 +00:00
5 changed files with 13 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
source 'http://rubygems.org'
gem 'rails', '3.2.11'
gem 'rails', '3.2.8'
gem "jquery-rails", "~> 2.0.2"
gem "i18n", "~> 0.6.0"
gem "coderay", "~> 1.0.6"

View File

@@ -129,6 +129,15 @@ class WikiController < ApplicationController
# don't keep previous comment
@content.comments = nil
if !@page.new_record? && params[:content].present? && @content.text == params[:content][:text]
attachments = Attachment.attach_files(@page, params[:attachments])
render_attachment_warning_if_needed(@page)
# don't save content if text wasn't changed
@page.save
redirect_to :action => 'show', :project_id => @project, :id => @page.title
return
end
@content.comments = params[:content][:comments]
@text = params[:content][:text]
if params[:section].present? && Redmine::WikiFormatting.supports_section_edit?
@@ -140,8 +149,8 @@ class WikiController < ApplicationController
@content.text = @text
end
@content.author = User.current
if @page.save_with_content
@page.content = @content
if @page.save
attachments = Attachment.attach_files(@page, params[:attachments])
render_attachment_warning_if_needed(@page)
call_hook(:controller_wiki_edit_after_save, { :params => params, :page => @page})

View File

@@ -172,21 +172,6 @@ class WikiPage < ActiveRecord::Base
self.parent = parent_page
end
# Saves the page and its content if text was changed
def save_with_content
ret = nil
transaction do
if new_record?
# Rails automatically saves associated content
ret = save
else
ret = save && (content.text_changed? ? content.save : true)
end
raise ActiveRecord::Rollback unless ret
end
ret
end
protected
def validate_parent_title

View File

@@ -4,10 +4,6 @@ Redmine - project management software
Copyright (C) 2006-2012 Jean-Philippe Lang
http://www.redmine.org/
== 2013-01-09 v2.1.6
* Upgrade to Rails 3.2.11
== 2012-12-18 v2.1.5
* Defect #12400: Validation fails when receiving an email with list custom fields

View File

@@ -4,7 +4,7 @@ module Redmine
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
TINY = 6
TINY = 5
# Branch values:
# * official release: nil