mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Merged r3298 to r3302 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.9-stable@3303 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
eaaa471d6a
commit
1efb25a433
@ -62,7 +62,7 @@
|
|||||||
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
||||||
|
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> © 2006-2009 Jean-Philippe Lang
|
Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> © 2006-2010 Jean-Philippe Lang
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<%= call_hook :view_layouts_base_body_bottom %>
|
<%= call_hook :view_layouts_base_body_bottom %>
|
||||||
|
|||||||
@ -4,6 +4,13 @@ Redmine - project management software
|
|||||||
Copyright (C) 2006-2010 Jean-Philippe Lang
|
Copyright (C) 2006-2010 Jean-Philippe Lang
|
||||||
http://www.redmine.org/
|
http://www.redmine.org/
|
||||||
|
|
||||||
|
== 0.9.1
|
||||||
|
|
||||||
|
* Vertical alignment for inline images in formatted text set to 'middle'
|
||||||
|
* Fixed: Redmine.pm error "closing dbh with active statement handles at /usr/lib/perl5/Apache/Redmine.pm"
|
||||||
|
* Fixed: copyright year in footer set to 2010
|
||||||
|
|
||||||
|
|
||||||
== 2010-01-09 v0.9.0 (Release candidate)
|
== 2010-01-09 v0.9.0 (Release candidate)
|
||||||
|
|
||||||
* Unlimited subproject nesting
|
* Unlimited subproject nesting
|
||||||
|
|||||||
@ -244,7 +244,9 @@ sub is_public_project {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$sth->finish();
|
$sth->finish();
|
||||||
|
undef $sth;
|
||||||
$dbh->disconnect();
|
$dbh->disconnect();
|
||||||
|
undef $dbh;
|
||||||
|
|
||||||
$ret;
|
$ret;
|
||||||
}
|
}
|
||||||
@ -310,10 +312,13 @@ sub is_member {
|
|||||||
$ret = 1 if ($ldap->authenticate($redmine_user, $redmine_pass));
|
$ret = 1 if ($ldap->authenticate($redmine_user, $redmine_pass));
|
||||||
}
|
}
|
||||||
$sthldap->finish();
|
$sthldap->finish();
|
||||||
|
undef $sthldap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$sth->finish();
|
$sth->finish();
|
||||||
|
undef $sth;
|
||||||
$dbh->disconnect();
|
$dbh->disconnect();
|
||||||
|
undef $dbh;
|
||||||
|
|
||||||
if ($cfg->{RedmineCacheCredsMax} and $ret) {
|
if ($cfg->{RedmineCacheCredsMax} and $ret) {
|
||||||
if (defined $usrprojpass) {
|
if (defined $usrprojpass) {
|
||||||
|
|||||||
@ -674,6 +674,8 @@ a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
|
|||||||
a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
|
a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
|
||||||
h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
|
h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: inline; color: #ddd; }
|
||||||
|
|
||||||
|
div.wiki img { vertical-align: middle; }
|
||||||
|
|
||||||
/***** My page layout *****/
|
/***** My page layout *****/
|
||||||
.block-receiver {
|
.block-receiver {
|
||||||
border:1px dashed #c0c0c0;
|
border:1px dashed #c0c0c0;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user