Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
38aeb2746c | ||
|
|
28ea323791 | ||
|
|
18787caab9 | ||
|
|
390d6023c6 | ||
|
|
e1ef9a5c72 |
@@ -21,7 +21,7 @@ class Mailer < ActionMailer::Base
|
||||
|
||||
def issue_add(issue)
|
||||
# Sends to all project members
|
||||
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }
|
||||
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
|
||||
@from = $RDM_MAIL_FROM
|
||||
@subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
|
||||
@body['issue'] = issue
|
||||
@@ -30,7 +30,7 @@ class Mailer < ActionMailer::Base
|
||||
def issue_edit(journal)
|
||||
# Sends to all project members
|
||||
issue = journal.journalized
|
||||
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }
|
||||
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
|
||||
@from = $RDM_MAIL_FROM
|
||||
@subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
|
||||
@body['issue'] = issue
|
||||
|
||||
@@ -112,7 +112,7 @@ $RDM_TEXTILE_DISABLED = true unless ActionView::Helpers::TextHelper.method_defin
|
||||
# application name
|
||||
RDM_APP_NAME = "redMine"
|
||||
# application version
|
||||
RDM_APP_VERSION = "0.4.0"
|
||||
RDM_APP_VERSION = "0.4.1"
|
||||
|
||||
ActiveRecord::Errors.default_error_messages = {
|
||||
:inclusion => "activerecord_error_inclusion",
|
||||
|
||||
@@ -5,6 +5,11 @@ Copyright (C) 2006-2007 Jean-Philippe Lang
|
||||
http://redmine.rubyforge.org/
|
||||
|
||||
|
||||
== 03/02/2006 v0.4.1
|
||||
|
||||
* fixed: emails have no recipient when one of the project members has notifications disabled
|
||||
|
||||
|
||||
== 01/02/2006 v0.4.0
|
||||
|
||||
* simple SVN browser added (just needs svn binaries in PATH)
|
||||
|
||||
BIN
public/images/calendar.png
Normal file
BIN
public/images/calendar.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 196 B |
@@ -9,7 +9,7 @@
|
||||
height: 16px;
|
||||
font-size: 0.1em;
|
||||
cursor: s-resize;
|
||||
background: transparent url(img/resizer.png) no-repeat 45% 50%;
|
||||
/*background: transparent url(img/resizer.png) no-repeat 45% 50%;*/
|
||||
}
|
||||
|
||||
.jstElements {
|
||||
|
||||
Reference in New Issue
Block a user