- Removed target attribute from <a href="">. Patch by Al.

4.2.x
Dries Buytaert 2003-03-13 21:19:36 +00:00
parent f89d341d11
commit d0a8e9221b
3 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ function import_format_item($item, $feed = 0) {
}
// external link
$output .= "<a href=\"$item->link\" target=\"_new\">$item->title</a>";
$output .= "<a href=\"$item->link\">$item->title</a>";
return $output ."<br />";
}

View File

@ -70,7 +70,7 @@ function import_format_item($item, $feed = 0) {
}
// external link
$output .= "<a href=\"$item->link\" target=\"_new\">$item->title</a>";
$output .= "<a href=\"$item->link\">$item->title</a>";
return $output ."<br />";
}

View File

@ -70,7 +70,7 @@ function import_format_item($item, $feed = 0) {
}
// external link
$output .= "<a href=\"$item->link\" target=\"_new\">$item->title</a>";
$output .= "<a href=\"$item->link\">$item->title</a>";
return $output ."<br />";
}