From a1c575b671401c1712e61d18ded850faf8f8f702 Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 5 Apr 2012 15:34:28 +0000 Subject: [PATCH] Fix typo in [20372] - See #19922 props SergeyBiryukov. git-svn-id: http://svn.automattic.com/wordpress/trunk@20373 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 6e88828ce..c8d4623d4 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -1540,7 +1540,7 @@ class WP_Http_Cookie { if ( empty( $this->name ) || empty( $this->value ) ) return ''; - return $this->name . '=' . apply_filters( 'wp_http_cookie_value', $this->value, $this-name ); + return $this->name . '=' . apply_filters( 'wp_http_cookie_value', $this->value, $this->name ); } /**