OSDN Git Service

fix: show wrong name.
authorikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Sun, 28 Nov 2004 04:53:57 +0000 (04:53 +0000)
committerikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Sun, 28 Nov 2004 04:53:57 +0000 (04:53 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/kita/kita/trunk@1578 56b19765-1e22-0410-a548-a0f45d66c51a

kita/src/libkita/kita_misc.cpp

index c4318f2..003a649 100644 (file)
@@ -838,8 +838,8 @@ void Kita::parseTITLEdat(
 
         case PARSEMODE_HTML:
 
-            titletext += "<a href=\"" + linkurl;
-            titletext += " title=\"" + addstr + "\">";
+            titletext += "<a href=\"" + linkurl.replace( ">", "&lt;" );
+            titletext += " title=\"" + addstr.replace( ">", "&lt;" ) + "\">";
             titletext += linkstr;
             titletext += "</a>";