Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
297c552c
Commit
297c552c
authored
Apr 29, 2004
by
Kjartan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Incorrect quotes.
parent
857f1b1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/aggregator.module
modules/aggregator.module
+1
-1
modules/aggregator/aggregator.module
modules/aggregator/aggregator.module
+1
-1
No files found.
modules/aggregator.module
View file @
297c552c
...
...
@@ -178,7 +178,7 @@ function aggregator_remove($feed) {
db_query
(
'DELETE FROM {aggregator_category_item} WHERE '
.
implode
(
' OR '
,
$items
));
}
db_query
(
'DELETE FROM {aggregator_item} WHERE fid = %d'
,
$feed
[
'fid'
]);
db_query
(
'
UPDATE {aggregator_feed} SET checked = 0, etag = '', modified = 0 WHERE fid = %d
'
,
$feed
[
'fid'
]);
db_query
(
"
UPDATE
{
aggregator_feed
}
SET checked = 0, etag = '', modified = 0 WHERE fid = %d
"
,
$feed
[
'fid'
]);
drupal_set_message
(
t
(
'removed news items from \'%site\'.'
,
array
(
'%site'
=>
$feed
[
'title'
])));
}
...
...
modules/aggregator/aggregator.module
View file @
297c552c
...
...
@@ -178,7 +178,7 @@ function aggregator_remove($feed) {
db_query
(
'DELETE FROM {aggregator_category_item} WHERE '
.
implode
(
' OR '
,
$items
));
}
db_query
(
'DELETE FROM {aggregator_item} WHERE fid = %d'
,
$feed
[
'fid'
]);
db_query
(
'
UPDATE {aggregator_feed} SET checked = 0, etag = '', modified = 0 WHERE fid = %d
'
,
$feed
[
'fid'
]);
db_query
(
"
UPDATE
{
aggregator_feed
}
SET checked = 0, etag = '', modified = 0 WHERE fid = %d
"
,
$feed
[
'fid'
]);
drupal_set_message
(
t
(
'removed news items from \'%site\'.'
,
array
(
'%site'
=>
$feed
[
'title'
])));
}
...
...
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