diff --git a/fp-plugins/bbcode/plugin.bbcode.php b/fp-plugins/bbcode/plugin.bbcode.php index e00277e..413c4e0 100644 --- a/fp-plugins/bbcode/plugin.bbcode.php +++ b/fp-plugins/bbcode/plugin.bbcode.php @@ -145,8 +145,9 @@ function do_bbcode_url($action, $attributes, $content, $params, $node_object) { // DMKE: uh? $content = $content; $rel = isset($attributes ['rel']) ? ' rel="' . $attributes ['rel'] . '"' : ''; + $target = isset($attributes['target']) ? ' target="'.$attributes['target'] . '"' : ''; $extern = !$local ? ' class="externlink" title="' . $lang ['plugin'] ['bbcode'] ['go_to'] . ' ' . $the_url . '"' : ''; - return '' . $content . ''; + return '' . $content . ''; } /**