Version 1.2.5: use puturl() to write out auto-expanded <url>

and <mailto> sections.  If I use reparse(), I end up having
unhappy side-effects on the visible part of the url or mailto.
This commit is contained in:
david parsons
2008-05-16 14:51:11 -07:00
parent da300839a1
commit 1d91c09fcd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
1.2.4
1.2.5
+1 -1
View File
@@ -716,7 +716,7 @@ maybe_tag_or_link(MMIOT *f)
Qstring("<a href=\"", f);
puturl(text,size,f);
Qstring("\">", f);
reparse(text, size, DENY_A, f);
puturl(text,size,f);
Qstring("</a>", f);
return 1;
}