--- MoinMoin/formatter/text_html.py.orig	2005-12-04 07:37:54.000000000 -0500
+++ MoinMoin/formatter/text_html.py	2006-01-15 03:31:17.000000000 -0500
@@ -254,7 +254,9 @@
                 html_class = 'badinterwiki'
             else:
                 html_class = 'interwiki'
-            title = kw.get('title', wikitag)
+            title = wikitag
+            if kw.has_key('title'):
+                title = title + ': ' + kw['title']
             return self.url(1, href, title=title, unescaped=0, css=html_class)
             # unescaped=1 was changed to 0 to make interwiki links with pages with umlauts (or other non-ascii) work
 
