diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-01-05 19:50:43 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-01-05 19:50:43 +0000 |
commit | 0158c920ada762f749971a826996c78a5f27d605 (patch) | |
tree | ff09a77864c0e775b83ef336a16e3caa38cb7345 /modules/aggregator.module | |
parent | 30fb23451fd002a5a38f3dab2041a69cd1b83d4f (diff) | |
download | brdo-0158c920ada762f749971a826996c78a5f27d605.tar.gz brdo-0158c920ada762f749971a826996c78a5f27d605.tar.bz2 |
Committed filter separation patch: all filter-related things are now in filter.module (which is a required module).
To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage.
(based on the patch by Goba)
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r-- | modules/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module index e1bce4967..aed065eaf 100644 --- a/modules/aggregator.module +++ b/modules/aggregator.module @@ -361,7 +361,7 @@ function import_refresh($feed) { // Prepare the item: foreach ($item as $key => $value) { - $item[$key] = node_filter(strtr(trim($value), $tt)); + $item[$key] = filter_default(strtr(trim($value), $tt)); } if ($item["TITLE"]) { |