From cd678d9a32c652705d7464117cb31d5e9965a4ab Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 29 Jan 2006 00:21:48 +0000 Subject: [PATCH] Allow empty usermeta fields. Props David House. fixes #2341 git-svn-id: http://svn.automattic.com/wordpress/trunk@3494 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index c751236058c7..7140894ed222 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2220,9 +2220,6 @@ function update_usermeta( $user_id, $meta_key, $meta_value ) { $meta_value = serialize($meta_value); $meta_value = trim( $meta_value ); - if ( '' == $meta_value ) - return false; - $cur = $wpdb->get_row("SELECT * FROM $wpdb->usermeta WHERE user_id = '$user_id' AND meta_key = '$meta_key'"); if ( !$cur ) { $wpdb->query("INSERT INTO $wpdb->usermeta ( user_id, meta_key, meta_value )