##// END OF EJS Templates
Merged r2463, r2465, r2467, r2468 from trunk....
Jean-Philippe Lang -
r2408:7f957653ad1b
parent child
Show More
@@ -186,7 +186,7 class IssuesController < ApplicationController
186 186
187 187 if (@time_entry.hours.nil? || @time_entry.valid?) && @issue.save
188 188 # Log spend time
189 if current_role.allowed_to?(:log_time)
189 if User.current.allowed_to?(:log_time, @project)
190 190 @time_entry.save
191 191 end
192 192 if !journal.new_record?
@@ -19,7 +19,7
19 19
20 20 <table width="100%">
21 21 <tr>
22 <td style="width:15%" class="status"><b><%=l(:field_status)%>:</b></td><td style="width:35%" class="status status-<%= @issue.status.name %>"><%= @issue.status.name %></td>
22 <td style="width:15%" class="status"><b><%=l(:field_status)%>:</b></td><td style="width:35%" class="status"><%= @issue.status.name %></td>
23 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 24 </tr>
25 25 <tr>
@@ -6,17 +6,12 body {
6 6 font-size: 0.8em;
7 7 color:#484848;
8 8 }
9 h1 {
10 font-family: "Trebuchet MS", Verdana, sans-serif;
11 font-size: 1.2em;
12 margin: 0px;
13 }
14 a, a:link, a:visited {
15 color: #2A5685;
16 }
17 a:hover, a:active {
18 color: #c61a1a;
19 }
9 h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; }
10 h1 { font-size: 1.2em; }
11 h2, h3 { font-size: 1.1em; }
12 a, a:link, a:visited { color: #2A5685;}
13 a:hover, a:active { color: #c61a1a; }
14 a.wiki-anchor { display: none; }
20 15 hr {
21 16 width: 100%;
22 17 height: 1px;
@@ -1,16 +1,35
1 1 == Redmine changelog
2 2
3 3 Redmine - project management software
4 Copyright (C) 2006-2008 Jean-Philippe Lang
4 Copyright (C) 2006-2009 Jean-Philippe Lang
5 5 http://www.redmine.org/
6 6
7 7
8 == v0.8.1
8 == 2009-02-15 v0.8.1
9 9
10 10 * Select watchers on new issue form
11 * Issue description is no longer a required field
11 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 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 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 35 == 2008-12-30 v0.8.0
General Comments 0
You need to be logged in to leave comments. Login now