@@ -186,7 +186,7 class IssuesController < ApplicationController | |||||
186 |
|
186 | |||
187 | if (@time_entry.hours.nil? || @time_entry.valid?) && @issue.save |
|
187 | if (@time_entry.hours.nil? || @time_entry.valid?) && @issue.save | |
188 | # Log spend time |
|
188 | # Log spend time | |
189 |
if current |
|
189 | if User.current.allowed_to?(:log_time, @project) | |
190 | @time_entry.save |
|
190 | @time_entry.save | |
191 | end |
|
191 | end | |
192 | if !journal.new_record? |
|
192 | if !journal.new_record? |
@@ -19,7 +19,7 | |||||
19 |
|
19 | |||
20 | <table width="100%"> |
|
20 | <table width="100%"> | |
21 | <tr> |
|
21 | <tr> | |
22 |
<td style="width:15%" class="status"><b><%=l(:field_status)%>:</b></td><td style="width:35%" class="status |
|
22 | <td style="width:15%" class="status"><b><%=l(:field_status)%>:</b></td><td style="width:35%" class="status"><%= @issue.status.name %></td> | |
23 | <td style="width:15%" class="start-date"><b><%=l(:field_start_date)%>:</b></td><td style="width:35%"><%= format_date(@issue.start_date) %></td> |
|
23 | <td style="width:15%" class="start-date"><b><%=l(:field_start_date)%>:</b></td><td style="width:35%"><%= format_date(@issue.start_date) %></td> | |
24 | </tr> |
|
24 | </tr> | |
25 | <tr> |
|
25 | <tr> |
@@ -6,17 +6,12 body { | |||||
6 | font-size: 0.8em; |
|
6 | font-size: 0.8em; | |
7 | color:#484848; |
|
7 | color:#484848; | |
8 | } |
|
8 | } | |
9 | h1 { |
|
9 | h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; } | |
10 | font-family: "Trebuchet MS", Verdana, sans-serif; |
|
10 | h1 { font-size: 1.2em; } | |
11 |
font-size: 1. |
|
11 | h2, h3 { font-size: 1.1em; } | |
12 | margin: 0px; |
|
12 | a, a:link, a:visited { color: #2A5685;} | |
13 | } |
|
13 | a:hover, a:active { color: #c61a1a; } | |
14 | a, a:link, a:visited { |
|
14 | a.wiki-anchor { display: none; } | |
15 | color: #2A5685; |
|
|||
16 | } |
|
|||
17 | a:hover, a:active { |
|
|||
18 | color: #c61a1a; |
|
|||
19 | } |
|
|||
20 | hr { |
|
15 | hr { | |
21 | width: 100%; |
|
16 | width: 100%; | |
22 | height: 1px; |
|
17 | height: 1px; |
@@ -1,16 +1,35 | |||||
1 | == Redmine changelog |
|
1 | == Redmine changelog | |
2 |
|
2 | |||
3 | Redmine - project management software |
|
3 | Redmine - project management software | |
4 |
Copyright (C) 2006-200 |
|
4 | Copyright (C) 2006-2009 Jean-Philippe Lang | |
5 | http://www.redmine.org/ |
|
5 | http://www.redmine.org/ | |
6 |
|
6 | |||
7 |
|
7 | |||
8 | == v0.8.1 |
|
8 | == 2009-02-15 v0.8.1 | |
9 |
|
9 | |||
10 | * Select watchers on new issue form |
|
10 | * Select watchers on new issue form | |
|
11 | * Issue description is no longer a required field | |||
11 | * Files module: ability to add files without version |
|
12 | * Files module: ability to add files without version | |
|
13 | * Jump to the current tab when using the project quick-jump combo | |||
|
14 | * Display a warning if some attachments were not saved | |||
|
15 | * Import custom fields values from emails on issue creation | |||
12 | * Show view/annotate/download links on entry and annotate views |
|
16 | * Show view/annotate/download links on entry and annotate views | |
|
17 | * Admin Info Screen: Display if plugin assets directory is writable | |||
|
18 | * Adds a 'Create and continue' button on the new issue form | |||
|
19 | * IMAP: add options to move received emails | |||
|
20 | * Do not show Category field when categories are not defined | |||
|
21 | * Lower the project identifier limit to a minimum of two characters | |||
|
22 | * Add "closed" html class to closed entries in issue list | |||
|
23 | * Fixed: broken redirect URL on login failure | |||
13 | * Fixed: Deleted files are shown when using Darcs |
|
24 | * Fixed: Deleted files are shown when using Darcs | |
|
25 | * Fixed: Darcs adapter works on Win32 only | |||
|
26 | * Fixed: syntax highlight doesn't appear in new ticket preview | |||
|
27 | * Fixed: email notification for changes I make still occurs when running Repository.fetch_changesets | |||
|
28 | * Fixed: no error is raised when entering invalid hours on the issue update form | |||
|
29 | * Fixed: Details time log report CSV export doesn't honour date format from settings | |||
|
30 | * Fixed: invalid css classes on issue details | |||
|
31 | * Fixed: Trac importer creates duplicate custom values | |||
|
32 | * Fixed: inline attached image should not match partial filename | |||
14 |
|
33 | |||
15 |
|
34 | |||
16 | == 2008-12-30 v0.8.0 |
|
35 | == 2008-12-30 v0.8.0 |
General Comments 0
You need to be logged in to leave comments.
Login now