Changeset 31211
- Timestamp:
- 01/16/2015 06:36:46 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r31210 r31211 1034 1034 } 1035 1035 1036 p ublicfunction column_default( $item, $column_name ) {}1037 1038 p ublicfunction column_cb( $item ) {}1039 1036 protected function column_default( $item, $column_name ) {} 1037 1038 protected function column_cb( $item ) {} 1039 1040 1040 /** 1041 1041 * Generates the columns for a single row of the table -
trunk/src/wp-includes/capabilities.php
r31190 r31211 430 430 * @property string $user_registered 431 431 * @property string $user_url 432 * @property string $spam 432 433 */ 433 434 class WP_User { -
trunk/src/wp-includes/class-wp-customize-manager.php
r31188 r31211 890 890 * @since 3.4.0 891 891 * 892 * @param {WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control}$a Object A.893 * @param {WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control}$b Object B.892 * @param WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control $a Object A. 893 * @param WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control $b Object B. 894 894 * @return int 895 895 */ -
trunk/src/wp-includes/class-wp.php
r31136 r31211 542 542 543 543 /** 544 544 * Set the Headers for 404, if nothing is found for requested URL. 545 545 * 546 546 * Issue a 404 if a request doesn't match any posts and doesn't match … … 667 667 * @param string $subject subject if regex 668 668 * @param array $matches data to use in map 669 * @return self670 669 */ 671 670 public function __construct($subject, $matches) { -
trunk/src/wp-includes/ms-deprecated.php
r30982 r31211 195 195 if ( is_array( $blogs ) ) { 196 196 reset( $blogs ); 197 $most_active = array(); 198 $blog_list = array(); 197 199 foreach ( (array) $blogs as $key => $details ) { 198 200 $most_active[ $details['blog_id'] ] = $details['postcount']; … … 201 203 arsort( $most_active ); 202 204 reset( $most_active ); 203 foreach ( (array) $most_active as $key => $details ) 205 $t = array(); 206 foreach ( (array) $most_active as $key => $details ) { 204 207 $t[ $key ] = $blog_list[ $key ]; 205 208 } 206 209 unset( $most_active ); 207 210 $most_active = $t;
Note: See TracChangeset
for help on using the changeset viewer.