Changes between Initial Version and Version 9 of Ticket #14601
- Timestamp:
- 05/04/2013 12:03:02 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14601
- Property Keywords has-patch 3.2-early added
-
Property
Milestone
changed from
Awaiting Review
to3.6
-
Ticket #14601 – Description
initial v9 1 1 In a scenario where you have a client that receives comments from the internet and pre-processes those comments before feeding them into wordpress through xmlrpc the ip and user-agent of the commenting internet user gets lost because there is no way of passing those values into the wp_new_comment function. 2 2 3 $_SERVER['REMOTE_ADDR'] and $_SERVER['HTTP_USER_AGENT']are hard-coded, which in the above mentioned scenario will always have the IP and user-agent from the client that feeds the comments into wp through xmlrpc.3 `$_SERVER['REMOTE_ADDR']` and `$_SERVER['HTTP_USER_AGENT']` are hard-coded, which in the above mentioned scenario will always have the IP and user-agent from the client that feeds the comments into wp through xmlrpc. 4 4 5 The attached patch will used passed in values and only fall back to $_SERVER['REMOTE_ADDR'] and $_SERVER['HTTP_USER_AGENT']if not passed in.5 The attached patch will used passed in values and only fall back to `$_SERVER['REMOTE_ADDR']` and `$_SERVER['HTTP_USER_AGENT']` if not passed in.