Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
56c15217
Commit
56c15217
authored
Dec 14, 2003
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Excessive CSS tags were generated for feeds and bundles.
parent
632bb2ac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
30 deletions
+6
-30
modules/aggregator.module
modules/aggregator.module
+2
-10
modules/aggregator/aggregator.module
modules/aggregator/aggregator.module
+2
-10
modules/import.module
modules/import.module
+2
-10
No files found.
modules/aggregator.module
View file @
56c15217
...
...
@@ -158,11 +158,7 @@ function import_bundle_block($attributes) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
bundle
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_feed_block
(
$feed
)
{
...
...
@@ -173,11 +169,7 @@ function import_feed_block($feed) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
feed
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_block
(
$op
,
$delta
)
{
...
...
modules/aggregator/aggregator.module
View file @
56c15217
...
...
@@ -158,11 +158,7 @@ function import_bundle_block($attributes) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
bundle
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_feed_block
(
$feed
)
{
...
...
@@ -173,11 +169,7 @@ function import_feed_block($feed) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
feed
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_block
(
$op
,
$delta
)
{
...
...
modules/import.module
View file @
56c15217
...
...
@@ -158,11 +158,7 @@ function import_bundle_block($attributes) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
bundle
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_feed_block
(
$feed
)
{
...
...
@@ -173,11 +169,7 @@ function import_feed_block($feed) {
$items
[]
=
theme
(
"import_format_item"
,
$item
);
}
$output
=
"<div class=
\"
import-block
\"
><div class=
\"
feed
\"
>"
;
$output
.
=
theme
(
"item_list"
,
$items
);
$output
.
=
"</div></div>"
;
return
$output
;
return
theme
(
"item_list"
,
$items
);
}
function
import_block
(
$op
,
$delta
)
{
...
...
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