Ticket #40459: 40459.patch
File 40459.patch, 877 bytes (added by , 8 years ago) |
---|
-
wp-includes/class-wp-network.php
162 162 return (int) $this->blog_id; 163 163 } 164 164 165 return null;165 return isset( $this->$key ) ? $this->$key : null; 166 166 } 167 167 168 168 /** … … 184 184 return true; 185 185 } 186 186 187 return false;187 return isset( $this->$key ); 188 188 } 189 189 190 190 /** -
wp-includes/class-wp-site.php
251 251 } 252 252 } 253 253 254 return null;254 return isset( $this->$key ) ? $this->$key : null; 255 255 } 256 256 257 257 /** … … 290 290 } 291 291 } 292 292 293 return false;293 return isset( $this->$key ); 294 294 } 295 295 296 296 /**