diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-11 16:49:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-11 16:49:38 +0000 |
commit | bd108c7f1036858fc2b4293ee2bad0474129fab9 (patch) | |
tree | fd5a88544ca93829c2f38b9e1f4da4e7fef051e9 /modules/aggregator/aggregator.module | |
parent | ea02bd1d2e1b8f134ac810116223a42883b41c73 (diff) | |
download | brdo-bd108c7f1036858fc2b4293ee2bad0474129fab9.tar.gz brdo-bd108c7f1036858fc2b4293ee2bad0474129fab9.tar.bz2 |
- Patch #299778 by hswong3i, Arancaytar, Dave Reid et al: code clean-up.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index d918022ec..1c76fbd9d 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -469,7 +469,7 @@ function aggregator_save_feed($edit) { 'image' => '', )) ->execute(); - + } if (!empty($edit['title'])) { // The feed is being saved, save the categories as well. @@ -501,7 +501,7 @@ function aggregator_remove($feed) { ->condition('iid', $iids, 'IN') ->execute(); } - + db_delete('aggregator_item') ->condition('fid', $feed['fid']) ->execute(); |