Changeset 28629
- Timestamp:
- 05/30/2014 04:58:36 PM (11 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r28500 r28629 520 520 } 521 521 522 public function column_date( $comment) {522 public function column_date() { 523 523 return get_comment_date( __( 'Y/m/d \a\t g:ia' ) ); 524 524 } 525 525 526 public function column_response( $comment) {526 public function column_response() { 527 527 $post = get_post(); 528 528 -
trunk/src/wp-admin/includes/class-wp-importer.php
r28492 r28629 197 197 * Bump up the request timeout for http requests 198 198 * 199 * @param int $val200 199 * @return int 201 200 */ 202 public function bump_request_timeout( $val) {201 public function bump_request_timeout() { 203 202 return 60; 204 203 } -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r28493 r28629 270 270 $posts_columns['title'] = _x( 'Title', 'column name' ); 271 271 272 if ( post_type_supports( $post_type, 'author' ) ) 272 if ( post_type_supports( $post_type, 'author' ) ) { 273 273 $posts_columns['author'] = __( 'Author' ); 274 275 $taxonomies = array(); 274 } 276 275 277 276 $taxonomies = get_object_taxonomies( $post_type, 'objects' ); -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r28493 r28629 190 190 $this->single_row( $term ); 191 191 } 192 $count = $number; // Only displaying a single page.193 192 } 194 193 } -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r28537 r28629 1920 1920 */ 1921 1921 protected function send_core_update_notification_email( $item ) { 1922 $notify = true;1923 1922 $notified = get_site_option( 'auto_core_update_notified' ); 1924 1923
Note: See TracChangeset
for help on using the changeset viewer.