Make WordPress Core


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (12 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin.php

    r18951 r19593  
    986986
    987987    // If the parent doesn't already have a submenu, add a link to the parent
    988     // as the first item in the submenu.  If the submenu file is the same as the
    989     // parent file someone is trying to link back to the parent manually.  In
     988    // as the first item in the submenu. If the submenu file is the same as the
     989    // parent file someone is trying to link back to the parent manually. In
    990990    // this case, don't automatically add a link back to avoid duplication.
    991991    if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug  ) {
     
    10031003
    10041004    $_registered_pages[$hookname] = true;
    1005     // backwards-compatibility for plugins using add_management page.  See wp-admin/admin.php for redirect from edit.php to tools.php
     1005    // backwards-compatibility for plugins using add_management page. See wp-admin/admin.php for redirect from edit.php to tools.php
    10061006    if ( 'tools.php' == $parent_slug )
    10071007        $_registered_pages[get_plugin_page_hookname( $menu_slug, 'edit.php')] = true;
     
    15901590 * @since 2.7.0
    15911591 *
    1592  * @param string $option_group A settings group name.  Should correspond to a whitelisted option key name.
     1592 * @param string $option_group A settings group name. Should correspond to a whitelisted option key name.
    15931593 *  Default whitelisted option key names include "general," "discussion," and "reading," among others.
    15941594 * @param string $option_name The name of an option to sanitize and save.
     
    17161716 * @since 2.7.0
    17171717 *
    1718  * @param string $option_group A settings group name.  This should match the group name used in register_setting().
     1718 * @param string $option_group A settings group name. This should match the group name used in register_setting().
    17191719 */
    17201720function settings_fields($option_group) {
Note: See TracChangeset for help on using the changeset viewer.