Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
d0a8e922
Commit
d0a8e922
authored
Mar 13, 2003
by
Dries
Browse files
- Removed target attribute from <a href="">. Patch by Al.
parent
f89d341d
Changes
3
Show whitespace changes
Inline
Side-by-side
modules/aggregator.module
View file @
d0a8e922
...
...
@@ -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 />"
;
}
...
...
modules/aggregator/aggregator.module
View file @
d0a8e922
...
...
@@ -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 />"
;
}
...
...
modules/import.module
View file @
d0a8e922
...
...
@@ -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 />"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment