diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-09 04:24:25 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-09 04:24:25 +0000 |
commit | f070c5d014c344ade86d296b0b7faba27c719d30 (patch) | |
tree | 1d261cbd3deffefe72b07c87dda76fc40caa7cfb /modules/aggregator/aggregator.module | |
parent | 8fba6d2bfb85f57a0860a29d9b9af62b877bf0d2 (diff) | |
download | brdo-f070c5d014c344ade86d296b0b7faba27c719d30.tar.gz brdo-f070c5d014c344ade86d296b0b7faba27c719d30.tar.bz2 |
#318687 by hswong3i: Fix pgsql update error in aggregator module.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r-- | modules/aggregator/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index b3a31c2fa..758c2b4dc 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -631,7 +631,7 @@ function aggregator_refresh($feed) { $image = '<a href="' . check_url($image['LINK']) . '" class="feed-image"><img src="' . check_url($image['URL']) . '" alt="' . check_plain($image['TITLE']) . '" /></a>'; } else { - $image = NULL; + $image = ''; } $etag = empty($result->headers['ETag']) ? '' : $result->headers['ETag']; |