Ticket #41759: 41759.patch
File 41759.patch, 641 bytes (added by , 7 years ago) |
---|
-
src/wp-includes/class-wp-http-response.php
IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8
48 48 * @param array $headers Optional. HTTP header map. Default empty array. 49 49 */ 50 50 public function __construct( $data = null, $status = 200, $headers = array() ) { 51 $this-> data = $data;51 $this->set_data( $data ); 52 52 $this->set_status( $status ); 53 53 $this->set_headers( $headers ); 54 54 }