Make WordPress Core


Ignore:
Timestamp:
05/29/2015 08:16:22 PM (9 years ago)
Author:
wonderboymusic
Message:

Add missing doc blocks to wp-admin/includes/*.
Fix some egregious uses of tabbing.
Some functions can simply return apply_filters(...) instead of setting a variable that is immediately returned.

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/menu.php

    r32643 r32654  
    171171
    172172// Add 'Editor' to the bottom of the Appearance menu.
    173 if ( ! is_multisite() )
     173if ( ! is_multisite() ) {
    174174    add_action('admin_menu', '_add_themes_utility_last', 101);
     175}
     176/**
     177 *
     178 */
    175179function _add_themes_utility_last() {
    176180    // Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook
Note: See TracChangeset for help on using the changeset viewer.