mirror of
https://github.com/redmine/redmine.git
synced 2026-01-22 07:23:07 +01:00
Merged r14758 (#21071).
git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14803 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -200,7 +200,7 @@ class Changeset < ActiveRecord::Base
|
||||
# Finds an issue that can be referenced by the commit message
|
||||
def find_referenced_issue_by_id(id)
|
||||
return nil if id.blank?
|
||||
issue = Issue.includes(:project).where(:id => id.to_i).first
|
||||
issue = Issue.find_by_id(id.to_i)
|
||||
if Setting.commit_cross_project_ref?
|
||||
# all issues can be referenced/fixed
|
||||
elsif issue
|
||||
|
||||
@@ -165,6 +165,18 @@ class ChangesetTest < ActiveSupport::TestCase
|
||||
assert_equal [1,2,3], c.issue_ids.sort
|
||||
end
|
||||
|
||||
def test_ref_keywords_with_large_number_should_not_error
|
||||
Setting.commit_ref_keywords = '*'
|
||||
c = Changeset.new(:repository => Project.find(1).repository,
|
||||
:committed_on => Time.now,
|
||||
:comments => 'Out of range #2010021810000121',
|
||||
:revision => '12345')
|
||||
assert_nothing_raised do
|
||||
assert c.save
|
||||
end
|
||||
assert_equal [], c.issue_ids.sort
|
||||
end
|
||||
|
||||
def test_update_keywords_with_changes_should_create_journal
|
||||
issue = Issue.generate!(:project_id => 1, :status_id => 1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user