Ticket #32865: 32865.patch
File 32865.patch, 2.7 KB (added by , 8 years ago) |
---|
-
src/wp-admin/includes/class-wp-press-this.php
944 944 * @access public 945 945 * 946 946 * @param array $data The site's data. 947 * @return sarray Embeds selected to be available.947 * @return array Embeds selected to be available. 948 948 */ 949 949 public function get_embeds( $data ) { 950 950 $selected_embeds = array(); … … 977 977 * @access public 978 978 * 979 979 * @param array $data The site's data. 980 * @return sarray980 * @return array 981 981 */ 982 982 public function get_images( $data ) { 983 983 $selected_images = array(); … … 1011 1011 * @access public 1012 1012 * 1013 1013 * @param array $data The site's data. 1014 * @return sstring Discovered canonical URL, or empty1014 * @return string Discovered canonical URL, or empty 1015 1015 */ 1016 1016 public function get_canonical_link( $data ) { 1017 1017 $link = ''; … … 1042 1042 * @access public 1043 1043 * 1044 1044 * @param array $data The site's data. 1045 * @return sstring Discovered site name, or empty1045 * @return string Discovered site name, or empty 1046 1046 */ 1047 1047 public function get_source_site_name( $data ) { 1048 1048 $name = ''; … … 1065 1065 * @access public 1066 1066 * 1067 1067 * @param array $data The site's data. 1068 * @return sstring Discovered page title, or empty1068 * @return string Discovered page title, or empty 1069 1069 */ 1070 1070 public function get_suggested_title( $data ) { 1071 1071 $title = ''; … … 1094 1094 * @access public 1095 1095 * 1096 1096 * @param array $data The site's data. 1097 * @return sstring Discovered content, or empty1097 * @return string Discovered content, or empty 1098 1098 */ 1099 1099 public function get_suggested_content( $data ) { 1100 1100 $content = $text = ''; -
src/wp-includes/class-wp-image-editor-gd.php
346 346 * 347 347 * @param bool $horz Flip along Horizontal Axis 348 348 * @param bool $vert Flip along Vertical Axis 349 * @return strue|WP_Error349 * @return true|WP_Error 350 350 */ 351 351 public function flip( $horz, $vert ) { 352 352 $w = $this->size['width']; -
src/wp-includes/class-wp-image-editor-imagick.php
413 413 * 414 414 * @param bool $horz Flip along Horizontal Axis 415 415 * @param bool $vert Flip along Vertical Axis 416 * @return strue|WP_Error416 * @return true|WP_Error 417 417 */ 418 418 public function flip( $horz, $vert ) { 419 419 try {