Changeset 30979
- Timestamp:
- 12/20/2014 08:55:21 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/screen.php
r30734 r30979 369 369 * @access public 370 370 * 371 * @param string $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen.371 * @param string|WP_Screen $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen. 372 372 * Defaults to the current $hook_suffix global. 373 373 * @return WP_Screen Screen object. -
trunk/src/wp-includes/capabilities.php
r30681 r30979 551 551 * @param string $field The field to query against: 'id', 'slug', 'email' or 'login' 552 552 * @param string|int $value The field value 553 * @return object Raw user object553 * @return object|false Raw user object 554 554 */ 555 555 public static function get_data_by( $field, $value ) { -
trunk/src/wp-includes/class-wp-embed.php
r30681 r30979 127 127 * } 128 128 * @param string $url The URL attempting to be embedded. 129 * @return string The embed HTML on success, otherwise the original URL. 129 * @return string|false The embed HTML on success, otherwise the original URL. 130 * `->maybe_make_link()` can return false on failure. 130 131 */ 131 132 public function shortcode( $attr, $url = '' ) { -
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r30180 r30979 191 191 * @param int $width 192 192 * @param int $height 193 * 194 * @return true|WP_Error 193 195 */ 194 196 protected function update_size( $width = null, $height = null ) { -
trunk/src/wp-includes/class-wp-image-editor.php
r30874 r30979 195 195 * @param int $width 196 196 * @param int $height 197 * @return true 197 198 */ 198 199 protected function update_size( $width = null, $height = null ) { … … 389 390 * @access public 390 391 * 391 * @return string suffix392 * @return false|string suffix 392 393 */ 393 394 public function get_suffix() { -
trunk/src/wp-includes/meta.php
r30846 r30979 1147 1147 */ 1148 1148 public function get_sql( $type, $primary_table, $primary_id_column, $context = null ) { 1149 global $wpdb;1150 1151 1149 if ( ! $meta_table = _get_meta_table( $type ) ) { 1152 1150 return false;
Note: See TracChangeset
for help on using the changeset viewer.