Changeset 37485
- Timestamp:
- 05/22/2016 05:21:48 PM (9 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r37431 r37485 930 930 * Validate the plugin path. 931 931 * 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(). 933 933 * 934 934 * @since 2.5.0 935 935 * 936 * @param string $plugin Plugin Path 936 * @param string $plugin Plugin Path. 937 937 * @return WP_Error|int 0 on success, WP_Error on failure. 938 938 */ -
trunk/src/wp-admin/includes/template.php
r37342 r37485 1101 1101 * Meta Box Accordion Template Function 1102 1102 * 1103 * Largely made up of abstracted code from {@link do_meta_boxes()}, this1103 * Largely made up of abstracted code from do_meta_boxes(), this 1104 1104 * function serves to build meta boxes as list items for display as 1105 1105 * a collapsible accordion. … … 1514 1514 1515 1515 /** 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. 1520 1519 * 1521 1520 * @since 2.7.0 … … 1546 1545 1547 1546 /** 1548 * Display the search query.1549 * 1550 * A simple wrapper to display the "s" parameter in a GETURI. This function1551 * 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. 1552 1551 * 1553 1552 * @since 2.7.0 -
trunk/src/wp-admin/includes/update-core.php
r36843 r37485 745 745 746 746 /** 747 * Upgrade the core of WordPress.747 * Upgrades the core of WordPress. 748 748 * 749 749 * This will create a .maintenance file at the base of the WordPress directory … … 751 751 * copied to their locations. 752 752 * 753 * The files in the {@link $_old_files}list will be removed and the new files753 * The files in the `$_old_files` list will be removed and the new files 754 754 * copied from the zip file after the database is upgraded. 755 755 * 756 * The files in the {@link $_new_bundled_files}list will be added to the installation756 * The files in the `$_new_bundled_files` list will be added to the installation 757 757 * if the version is greater than or equal to the old version being upgraded. 758 758 *
Note: See TracChangeset
for help on using the changeset viewer.