You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/08/02 13:33:17 UTC

svn commit: r800034 - /maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Author: vsiveton
Date: Sun Aug  2 11:33:17 2009
New Revision: 800034

URL: http://svn.apache.org/viewvc?rev=800034&view=rev
Log:
o fix report name

Modified:
    maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Modified: maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java?rev=800034&r1=800033&r2=800034&view=diff
==============================================================================
--- maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java (original)
+++ maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java Sun Aug  2 11:33:17 2009
@@ -958,7 +958,9 @@
     private void generateReport( Locale locale, LinkcheckModel linkcheckModel )
     {
         getSink().head();
-        getSink().text( i18n.getString( "linkcheck-report", locale, "report.linkcheck.name" ) );
+        getSink().title();
+        getSink().text( i18n.getString( "linkcheck-report", locale, "report.linkcheck.title" ) );
+        getSink().title_();
         getSink().head_();
 
         getSink().body();