Sadly, I had a minor problem with the links from the comments to the targets of those links… WordPress somehow URL-encoded the ' rel='external nofollow'
-part into the URL, resulting in something like <a href='http://example.com/'rel='external nofollow'>link text</a>
which – needless to say – did not really work that well. Turns out the culprit was in comment-template.php
on line 148 (Vanilla wordpress 2.7), which reads $return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
. I simply replaced the ‘ with \"
, and suddenly everything works. Damn strange I’m the only one with this problem tho.
The full line, changed, reads the following:
$return = "<a href=\"$url\" rel=\"external nofollow\" class=\"url\">$author</a>";
Tags
android coap copyright creationism do no evil DRM FAIL fget film foto hacks hardware humor ikea ip kde4 knowledge kodachi konspirasjon konspirasjonsteori led Linux MP3 musikk nettverk network OpenSolaris openSuSE opprør penger php piracy raspberrypi Redhat reklame sikkerhet skeptiker smugling software spam torrent trådfri usability utilities zigbeeSider
Blogroll
{ 1 } Comments
I guess it’s because single quotes are not XML, so is allowed in HTML but not in XHTML