Ticket #50747: 50747.patch
File 50747.patch, 1.5 KB (added by , 4 years ago) |
---|
-
wp-admin/includes/class-wp-ms-themes-list-table.php
439 439 440 440 if ( $this->show_autoupdates ) { 441 441 if ( 'auto-update-enabled' !== $status ) { 442 $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );442 $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' ); 443 443 } 444 444 445 445 if ( 'auto-update-disabled' !== $status ) { 446 $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );446 $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' ); 447 447 } 448 448 } 449 449 -
wp-admin/includes/class-wp-plugins-list-table.php
585 585 586 586 if ( $this->show_autoupdates ) { 587 587 if ( 'auto-update-enabled' !== $status ) { 588 $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );588 $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' ); 589 589 } 590 590 if ( 'auto-update-disabled' !== $status ) { 591 $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );591 $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' ); 592 592 } 593 593 } 594 594 }