Make WordPress Core

Changeset 59727


Ignore:
Timestamp:
01/29/2025 05:38:49 PM (3 months ago)
Author:
joedolson
Message:

Administration: Fix pagination in categories, tags, and plugins tables.

Fix an issue introduced in [59134] that prevented manual entry of a page number in the pagination input field from navigating pages. Requiring validation of the bulk actions input also impacted other inputs nested in the same form.

Also fixes a pre-existing bug where it was not possible to navigate to page 1 using the input field.

Props ffffelix, im3dabasia1, apermo, rishavdutta, joedolson, swissspidy, jorbin, joedolson.
Fixes #62534.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/admin/common.js

    r59134 r59727  
    13111311    };
    13121312
     1313    // Stores initial pagination value for comparison.
     1314    var initialPagedValue = document.querySelector( '#current-page-selector' ).value;
     1315
    13131316    $( '.bulkactions' ).parents( 'form' ).on( 'submit', function( event ) {
    13141317        var form = this,
    13151318            submitterName = event.originalEvent && event.originalEvent.submitter ? event.originalEvent.submitter.name : false;
     1319
     1320        var currentPagedValue = form.querySelector( '#current-page-selector' ).value;
     1321
     1322        if ( initialPagedValue !== currentPagedValue ) {
     1323            return; // Pagination form submission.
     1324        }
    13161325
    13171326        // Observe submissions from posts lists for 'bulk_action' or users lists for 'new_role'.
  • trunk/src/wp-admin/edit-tags.php

    r58918 r59727  
    216216    if ( $pagenum > 1 ) {
    217217        $location = add_query_arg( 'paged', $pagenum, $location ); // $pagenum takes care of $total_pages.
     218    }
     219    if ( 1 === $pagenum ) {
     220        $location = remove_query_arg( 'paged', $location );
    218221    }
    219222
Note: See TracChangeset for help on using the changeset viewer.