You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by wa...@apache.org on 2011/12/18 02:48:36 UTC

svn commit: r1220320 - /incubator/ooo/ooo-site/trunk/lib/view.pm

Author: wave
Date: Sun Dec 18 01:48:35 2011
New Revision: 1220320

URL: http://svn.apache.org/viewvc?rev=1220320&view=rev
Log:
Buildbot failed change breadcrumb case and try to trigger a successful build

Modified:
    incubator/ooo/ooo-site/trunk/lib/view.pm

Modified: incubator/ooo/ooo-site/trunk/lib/view.pm
URL: http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/lib/view.pm?rev=1220320&r1=1220319&r2=1220320&view=diff
==============================================================================
--- incubator/ooo/ooo-site/trunk/lib/view.pm (original)
+++ incubator/ooo/ooo-site/trunk/lib/view.pm Sun Dec 18 01:48:35 2011
@@ -136,8 +136,8 @@ sub breadcrumbs {
     my $relpath = "";
     for (@path) {
         $relpath .= "$_/";
-        $_ ||= "Home";
-        push @rv, qq(<a href="$relpath">\u$_</a>);
+        $_ ||= "home";
+        push @rv, qq(<a href="$relpath">$_</a>);
     }
     return join "&nbsp;&raquo&nbsp;", @rv;
 }