From 802ad6705857235eae2f82049c05dd8d8f3b8846 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 31 Oct 2008 20:41:16 +0000 Subject: [PATCH] Make user settings global git-svn-id: https://develop.svn.wordpress.org/trunk@9444 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 9ab187b901..cad7692682 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -675,8 +675,8 @@ function wp_user_settings() { $saved = isset($_COOKIE['wp-settings-time-'.$user->ID]) ? preg_replace( '/[^0-9]/', '', $_COOKIE['wp-settings-time-'.$user->ID] ) : 0; if ( $saved > $last_time ) { - update_user_option( $user->ID, 'user-settings', $cookie ); - update_user_option( $user->ID, 'user-settings-time', time() - 5 ); + update_user_option( $user->ID, 'user-settings', $cookie, true ); + update_user_option( $user->ID, 'user-settings-time', time() - 5, true ); return; } }