diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-13 21:19:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-13 21:19:36 +0000 |
commit | d0a8e9221b73704cc8815830899b04ab4dbc3f7e (patch) | |
tree | 2e93d5bcc5d3576fca6673f1c70210dde88d54a5 /modules/aggregator/aggregator.module | |
parent | f89d341d11dca6760e0426bc42d78c76b16a1e66 (diff) | |
download | brdo-d0a8e9221b73704cc8815830899b04ab4dbc3f7e.tar.gz brdo-d0a8e9221b73704cc8815830899b04ab4dbc3f7e.tar.bz2 |
- Removed target attribute from <a href="">. Patch by Al.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index d4c7469d0..dbe097081 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -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 />"; } |