@@ -62,7 +62,7 | |||
|
62 | 62 | <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div> |
|
63 | 63 | |
|
64 | 64 | <div id="footer"> |
|
65 |
Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> © 2006-200 |
|
|
65 | Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> © 2006-2010 Jean-Philippe Lang | |
|
66 | 66 | </div> |
|
67 | 67 | </div> |
|
68 | 68 | <%= call_hook :view_layouts_base_body_bottom %> |
@@ -4,6 +4,13 Redmine - project management software | |||
|
4 | 4 | Copyright (C) 2006-2010 Jean-Philippe Lang |
|
5 | 5 | http://www.redmine.org/ |
|
6 | 6 | |
|
7 | == 0.9.1 | |
|
8 | ||
|
9 | * Vertical alignment for inline images in formatted text set to 'middle' | |
|
10 | * Fixed: Redmine.pm error "closing dbh with active statement handles at /usr/lib/perl5/Apache/Redmine.pm" | |
|
11 | * Fixed: copyright year in footer set to 2010 | |
|
12 | ||
|
13 | ||
|
7 | 14 | == 2010-01-09 v0.9.0 (Release candidate) |
|
8 | 15 | |
|
9 | 16 | * Unlimited subproject nesting |
@@ -244,7 +244,9 sub is_public_project { | |||
|
244 | 244 | } |
|
245 | 245 | } |
|
246 | 246 | $sth->finish(); |
|
247 | undef $sth; | |
|
247 | 248 | $dbh->disconnect(); |
|
249 | undef $dbh; | |
|
248 | 250 | |
|
249 | 251 | $ret; |
|
250 | 252 | } |
@@ -310,10 +312,13 sub is_member { | |||
|
310 | 312 | $ret = 1 if ($ldap->authenticate($redmine_user, $redmine_pass)); |
|
311 | 313 | } |
|
312 | 314 | $sthldap->finish(); |
|
315 | undef $sthldap; | |
|
313 | 316 | } |
|
314 | 317 | } |
|
315 | 318 | $sth->finish(); |
|
319 | undef $sth; | |
|
316 | 320 | $dbh->disconnect(); |
|
321 | undef $dbh; | |
|
317 | 322 | |
|
318 | 323 | if ($cfg->{RedmineCacheCredsMax} and $ret) { |
|
319 | 324 | if (defined $usrprojpass) { |
@@ -674,6 +674,8 a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; } | |||
|
674 | 674 | a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; } |
|
675 | 675 | h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; } |
|
676 | 676 | |
|
677 | div.wiki img { vertical-align: middle; } | |
|
678 | ||
|
677 | 679 | /***** My page layout *****/ |
|
678 | 680 | .block-receiver { |
|
679 | 681 | border:1px dashed #c0c0c0; |
General Comments 0
You need to be logged in to leave comments.
Login now