Skip to content

Commit

Permalink
fixed bug 1709 (interwiki targets are invalid)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@162085 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Paul M Jones committed Jun 26, 2004
1 parent f6666d7 commit 4b2c245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Text/Wiki/Render/Xhtml/Interwiki.php
Expand Up @@ -51,7 +51,7 @@ function token($options)
$target = $this->getConf('target', '');

if ($target && trim($target) != '') {
$target = "target=\"$target\"";
$target = " target=\"$target\"";
}

return "<a$target href=\"$href\">$text</a>";
Expand Down

0 comments on commit 4b2c245

Please sign in to comment.