Compare commits

...

4 Commits
nbc ... 0.6.3

Author SHA1 Message Date
Jean-Philippe Lang
63f11b1355 tagged version 0.6.3
git-svn-id: http://redmine.rubyforge.org/svn/tags/0.6.3@1012 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-12-18 19:02:44 +00:00
Jean-Philippe Lang
eb86e5e7e1 Changes for 0.6.3 release.
git-svn-id: http://redmine.rubyforge.org/svn/branches/0.6-stable@1010 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-12-18 18:12:18 +00:00
Jean-Philippe Lang
fc26668cd9 Fixed: upload doesn't work in "Files" section.
git-svn-id: http://redmine.rubyforge.org/svn/branches/0.6-stable@1009 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-12-18 18:04:10 +00:00
Jean-Philippe Lang
2b42e3fc50 Added 0.6 stable branch.
git-svn-id: http://redmine.rubyforge.org/svn/branches/0.6-stable@1008 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-12-18 17:53:13 +00:00
3 changed files with 7 additions and 2 deletions

View File

@@ -339,7 +339,7 @@ class ProjectsController < ApplicationController
def add_file
if request.post?
@version = @project.versions.find_by_id(params[:version_id])
attachments = attach_files(@issue, params[:attachments])
attachments = attach_files(@version, params[:attachments])
Mailer.deliver_attachments_added(attachments) if !attachments.empty? && Setting.notified_events.include?('file_added')
redirect_to :controller => 'projects', :action => 'list_files', :id => @project
end

View File

@@ -5,6 +5,11 @@ Copyright (C) 2006-2007 Jean-Philippe Lang
http://www.redmine.org/
== 2007-12-18 v0.6.3
* Fixed: upload doesn't work in 'Files' section
== 2007-12-16 v0.6.2
* Search engine: issue custom fields can now be searched

View File

@@ -4,7 +4,7 @@ module Redmine
module VERSION #:nodoc:
MAJOR = 0
MINOR = 6
TINY = 2
TINY = 3
def self.revision
revision = nil