Make WordPress Core

Changeset 37485


Ignore:
Timestamp:
05/22/2016 05:21:48 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Remove/replace invalid inline @link tags from DocBlocks in wp-admin/includes/*.

See #36910.

Location:
trunk/src/wp-admin/includes
Files:
3 edited

Legend:

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

    r37431 r37485  
    930930 * Validate the plugin path.
    931931 *
    932  * Checks that the file exists and {@link validate_file() is valid file}.
     932 * Checks that the file exists and is a valid file. See validate_file().
    933933 *
    934934 * @since 2.5.0
    935935 *
    936  * @param string $plugin Plugin Path
     936 * @param string $plugin Plugin Path.
    937937 * @return WP_Error|int 0 on success, WP_Error on failure.
    938938 */
  • trunk/src/wp-admin/includes/template.php

    r37342 r37485  
    11011101 * Meta Box Accordion Template Function
    11021102 *
    1103  * Largely made up of abstracted code from {@link do_meta_boxes()}, this
     1103 * Largely made up of abstracted code from do_meta_boxes(), this
    11041104 * function serves to build meta boxes as list items for display as
    11051105 * a collapsible accordion.
     
    15141514
    15151515/**
    1516  * Display the post password.
    1517  *
    1518  * The password is passed through {@link esc_attr()} to ensure that it
    1519  * is safe for placing in an html attribute.
     1516 * Displays the post password.
     1517 *
     1518 * The password is passed through esc_attr() to ensure that it is safe for placing in an html attribute.
    15201519 *
    15211520 * @since 2.7.0
     
    15461545
    15471546/**
    1548  * Display the search query.
    1549  *
    1550  * A simple wrapper to display the "s" parameter in a GET URI. This function
    1551  * should only be used when {@link the_search_query()} cannot.
     1547 * Displays the search query.
     1548 *
     1549 * A simple wrapper to display the "s" parameter in a `GET` URI. This function
     1550 * should only be used when the_search_query() cannot.
    15521551 *
    15531552 * @since 2.7.0
  • trunk/src/wp-admin/includes/update-core.php

    r36843 r37485  
    745745
    746746/**
    747  * Upgrade the core of WordPress.
     747 * Upgrades the core of WordPress.
    748748 *
    749749 * This will create a .maintenance file at the base of the WordPress directory
     
    751751 * copied to their locations.
    752752 *
    753  * The files in the {@link $_old_files} list will be removed and the new files
     753 * The files in the `$_old_files` list will be removed and the new files
    754754 * copied from the zip file after the database is upgraded.
    755755 *
    756  * The files in the {@link $_new_bundled_files} list will be added to the installation
     756 * The files in the `$_new_bundled_files` list will be added to the installation
    757757 * if the version is greater than or equal to the old version being upgraded.
    758758 *
Note: See TracChangeset for help on using the changeset viewer.