Plugin Directory

Changeset 1084755


Ignore:
Timestamp:
02/08/2015 01:59:29 AM (11 years ago)
Author:
jakemgold
Message:

Fixed redundant URL encoding when sorting in admin page list

Location:
simple-page-ordering/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • simple-page-ordering/trunk/readme.txt

    r997790 r1084755  
    44Tags: order, re-order, ordering, pages, page, manage, menu_order, hierarchical, ajax, drag-and-drop, admin
    55Requires at least: 3.8
    6 Tested up to: 4.0
    7 Stable tag: 2.2.3
     6Tested up to: 4.1
     7Stable tag: 2.2.4
    88
    99Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.
     
    7777
    7878== Changelog ==
     79
     80= 2.2.4 =
     81* Fixed redundant URL encoding when sorting in admin page list
    7982
    8083= 2.2.3 =
  • simple-page-ordering/trunk/simple-page-ordering.php

    r997790 r1084755  
    44Plugin URI: http://10up.com/plugins/simple-page-ordering-wordpress/
    55Description: Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the "Help" tab on the Pages screen.
    6 Version: 2.2.3
     6Version: 2.2.4
    77Author: Jake Goldman, 10up
    88Author URI: http://10up.com
     
    284284        $query_string = esc_url( remove_query_arg( array( 'orderby', 'order' ) ) );
    285285        if ( ! is_post_type_hierarchical( get_post_type() ) ) {
    286             $query_string = add_query_arg( 'orderby', urlencode( 'menu_order title' ), $query_string );
     286            $query_string = add_query_arg( 'orderby', 'menu_order title', $query_string );
    287287            $query_string = add_query_arg( 'order', 'asc', $query_string );
    288288        }
Note: See TracChangeset for help on using the changeset viewer.