Make WordPress Core

Ticket #50747: 50747.patch

File 50747.patch, 1.5 KB (added by ramiy, 4 years ago)
  • wp-admin/includes/class-wp-ms-themes-list-table.php

     
    439439
    440440                if ( $this->show_autoupdates ) {
    441441                        if ( 'auto-update-enabled' !== $status ) {
    442                                 $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );
     442                                $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' );
    443443                        }
    444444
    445445                        if ( 'auto-update-disabled' !== $status ) {
    446                                 $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );
     446                                $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' );
    447447                        }
    448448                }
    449449
  • wp-admin/includes/class-wp-plugins-list-table.php

     
    585585
    586586                        if ( $this->show_autoupdates ) {
    587587                                if ( 'auto-update-enabled' !== $status ) {
    588                                         $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );
     588                                        $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' );
    589589                                }
    590590                                if ( 'auto-update-disabled' !== $status ) {
    591                                         $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );
     591                                        $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' );
    592592                                }
    593593                        }
    594594                }