From 51b69d89ca3050d82afd53bd2a591e78a45f3418 Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 12 Aug 2005 15:56:39 +0000 Subject: Fix rss cache git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@179 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-inst/wp-includes/rss-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wp-inst/wp-includes/rss-functions.php') diff --git a/wp-inst/wp-includes/rss-functions.php b/wp-inst/wp-includes/rss-functions.php index 7eb1b97..ee57ef0 100644 --- a/wp-inst/wp-includes/rss-functions.php +++ b/wp-inst/wp-includes/rss-functions.php @@ -658,9 +658,9 @@ class RSSCache { $cache_timestamp = 'rss_' . $this->file_name( $url ) . '_ts'; if ( !$wpdb->get_var("SELECT meta_key FROM $wpdb->sitemeta WHERE meta_key = '$cache_option'") ) - add_site_option($cache_option, '', '', 'no'); + add_site_option($cache_option, ''); if ( !$wpdb->get_var("SELECT meta_key FROM $wpdb->sitemeta WHERE meta_key = '$cache_timestamp'") ) - add_site_option($cache_timestamp, '', '', 'no'); + add_site_option($cache_timestamp, ''); update_site_option($cache_option, $rss); update_site_option($cache_timestamp, time() ); -- cgit