Fix typo in [20372] - See #19922 props SergeyBiryukov.

git-svn-id: https://develop.svn.wordpress.org/trunk@20373 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2012-04-05 15:34:28 +00:00
parent 35cfb293e7
commit 7ffdb1a514
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}
/**