### Eclipse Workspace Patch 1.0
#P wordpress
|
|
|
|
| 354 | 354 | $client_etag = stripslashes(stripslashes($_SERVER['HTTP_IF_NONE_MATCH'])); |
| 355 | 355 | else $client_etag = false; |
| 356 | 356 | |
| 357 | | $client_last_modified = empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? '' : trim($_SERVER['HTTP_IF_MODIFIED_SINCE']); |
| | 357 | $client_last_modified = empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? '' : trim( stripslashes( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ); |
| 358 | 358 | // If string is empty, return 0. If not, attempt to parse into a timestamp |
| 359 | 359 | $client_modified_timestamp = $client_last_modified ? strtotime($client_last_modified) : 0; |
| 360 | 360 | |