Make WordPress Core


Ignore:
Timestamp:
12/12/2015 03:36:36 PM (9 years ago)
Author:
swissspidy
Message:

Docs: Fix some minor DocBlock alignment issues.

See #32246.

File:
1 edited

Legend:

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

    r35874 r35885  
    13511351 * @param callable $function   The function to be called to output the content for this page.
    13521352 * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required.
    1353 */
     1353 */
    13541354function add_pages_page( $page_title, $menu_title, $capability, $menu_slug, $function = '' ) {
    13551355    return add_submenu_page( 'edit.php?post_type=page', $page_title, $menu_title, $capability, $menu_slug, $function );
     
    13711371 * @param callable $function   The function to be called to output the content for this page.
    13721372 * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required.
    1373 */
     1373 */
    13741374function add_comments_page( $page_title, $menu_title, $capability, $menu_slug, $function = '' ) {
    13751375    return add_submenu_page( 'edit-comments.php', $page_title, $menu_title, $capability, $menu_slug, $function );
Note: See TracChangeset for help on using the changeset viewer.