summaryrefslogtreecommitdiffstats
path: root/wp-inst
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst')
-rw-r--r--wp-inst/wp-includes/rss-functions.php4
1 files changed, 2 insertions, 2 deletions
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() );