Plugin Directory

Changeset 841548


Ignore:
Timestamp:
01/20/2014 04:06:17 AM (12 years ago)
Author:
ericjuden
Message:

Fix for case-sensitive alphabetizing: http://wordpress.org/support/topic/fixed-a-z-ordering

Location:
reorder-my-sites/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • reorder-my-sites/trunk/readme.txt

    r497436 r841548  
    33Tags: wordpress, multisite, wpmu, blogs, sites, my sites, dashboard, reorder, order
    44Requires at least: 3.3
    5 Tested up to: 3.3.1
     5Tested up to: 3.8
    66Stable tag: trunk
    77
     
    1919== Changelog ==
    2020
     21= 1.1 =
     22* Fix for case-sensitive alphabetizing: http://wordpress.org/support/topic/fixed-a-z-ordering
     23
    2124= 1.0 =
    2225* Initial release
  • reorder-my-sites/trunk/reorder-my-sites.php

    r497436 r841548  
    55Description: Reorders the My Sites dropdown menu in the Admin Bar alphabetically. It keeps the main blog at the top.
    66Author: ericjuden
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://www.judenware.com
    99Network: true
     
    2323        $sites = $wp_admin_bar->user->blogs;
    2424        foreach($sites as $site_id=>$site){
    25             $blog_names[$site_id] = $site->blogname;
     25            $blog_names[$site_id] = strtoupper($site->blogname);
    2626        }
    2727       
Note: See TracChangeset for help on using the changeset viewer.