Index: /trunk/src/org/openstreetmap/josm/tools/WikiReader.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/WikiReader.java	(revision 4914)
+++ /trunk/src/org/openstreetmap/josm/tools/WikiReader.java	(revision 4915)
@@ -113,4 +113,5 @@
         boolean inside = false;
         boolean transl = false;
+        boolean skip = false;
         String b = "";
         for (String line = in.readLine(); line != null; line = in.readLine()) {
@@ -128,7 +129,7 @@
                 inside = false;
             } else if (line.contains("<div class=\"trac-modifiedby\">")) {
-                continue;
+                skip = true;
             }
-            if (inside && !transl) {
+            if (inside && !transl && !skip) {
                 // add a border="0" attribute to images, otherwise the internal help browser
                 // will render a thick  border around images inside an <a> element
@@ -140,4 +141,7 @@
                 transl = false;
             }
+            if (line.contains("</div>")) {
+                skip = false;
+            }
         }
         if (b.indexOf("      Describe ") >= 0
