Changeset 53146
- Timestamp:
- 04/11/2022 09:46:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r53145 r53146 330 330 331 331 /** 332 * Update the "recently-edited" file for the plugin or theme file editor.332 * Updates the "recently-edited" file for the plugin or theme file editor. 333 333 * 334 334 * @since 1.5.0 … … 567 567 568 568 /** 569 * Resets global variables based on $_GET and $_POST 569 * Resets global variables based on $_GET and $_POST. 570 570 * 571 571 * This function resets global variables based on the names passed … … 802 802 803 803 /** 804 * Check if rewrite rule for WordPress already exists in the IIS 7+ configuration file804 * Checks if rewrite rule for WordPress already exists in the IIS 7+ configuration file. 805 805 * 806 806 * @since 2.8.0 807 807 * 808 * @param string $filename The file path to the configuration file 808 * @param string $filename The file path to the configuration file. 809 809 * @return bool 810 810 */ … … 835 835 836 836 /** 837 * Delete WordPress rewrite rule from web.config file if it exists there837 * Deletes WordPress rewrite rule from web.config file if it exists there. 838 838 * 839 839 * @since 2.8.0 840 840 * 841 * @param string $filename Name of the configuration file 841 * @param string $filename Name of the configuration file. 842 842 * @return bool 843 843 */ … … 874 874 875 875 /** 876 * Add WordPress rewrite rule to the IIS 7+ configuration file.876 * Adds WordPress rewrite rule to the IIS 7+ configuration file. 877 877 * 878 878 * @since 2.8.0 879 879 * 880 * @param string $filename The file path to the configuration file881 * @param string $rewrite_rule The XML fragment with URL Rewrite rule 880 * @param string $filename The file path to the configuration file. 881 * @param string $rewrite_rule The XML fragment with URL Rewrite rule. 882 882 * @return bool 883 883 */ … … 962 962 963 963 /** 964 * Saves the XML document into a file 964 * Saves the XML document into a file. 965 965 * 966 966 * @since 2.8.0 … … 979 979 980 980 /** 981 * Display the default admin color scheme picker (Used in user-edit.php)981 * Displays the default admin color scheme picker (Used in user-edit.php). 982 982 * 983 983 * @since 3.0.0 … … 1111 1111 1112 1112 /** 1113 * Check lock status for posts displayed on the Posts screen1113 * Checks lock status for posts displayed on the Posts screen. 1114 1114 * 1115 1115 * @since 3.6.0 … … 1162 1162 1163 1163 /** 1164 * Check lock status on the New/Edit Post screen and refresh the lock1164 * Checks lock status on the New/Edit Post screen and refresh the lock. 1165 1165 * 1166 1166 * @since 3.6.0 … … 1216 1216 1217 1217 /** 1218 * Check nonce expiration on the New/Edit Post screen and refresh if needed1218 * Checks nonce expiration on the New/Edit Post screen and refresh if needed. 1219 1219 * 1220 1220 * @since 3.6.0 … … 1256 1256 1257 1257 /** 1258 * Add the latest Heartbeat and REST-API nonce to the Heartbeat response.1258 * Adds the latest Heartbeat and REST-API nonce to the Heartbeat response. 1259 1259 * 1260 1260 * @since 5.0.0 … … 1274 1274 1275 1275 /** 1276 * Disable suspension of Heartbeat on the Add/Edit Post screens.1276 * Disables suspension of Heartbeat on the Add/Edit Post screens. 1277 1277 * 1278 1278 * @since 3.8.0 … … 1294 1294 1295 1295 /** 1296 * Autosave with heartbeat1296 * Performs autosave with heartbeat. 1297 1297 * 1298 1298 * @since 3.9.0 … … 1331 1331 1332 1332 /** 1333 * Remove single-use URL parameters and create canonical link based on new URL.1334 * 1335 * Remove specific query string parameters from a URL, create the canonical link,1333 * Removes single-use URL parameters and create canonical link based on new URL. 1334 * 1335 * Removes specific query string parameters from a URL, create the canonical link, 1336 1336 * put it in the admin header, and change the current URL to match. 1337 1337 * … … 1359 1359 1360 1360 /** 1361 * Send a referrer policy header so referrers are not sent externally from administration screens.1361 * Sends a referrer policy header so referrers are not sent externally from administration screens. 1362 1362 * 1363 1363 * @since 4.9.0 … … 1400 1400 1401 1401 /** 1402 * Send a confirmation request email when a change of site admin email address is attempted.1402 * Sends a confirmation request email when a change of site admin email address is attempted. 1403 1403 * 1404 1404 * The new site admin address will not become active until confirmed.
Note: See TracChangeset
for help on using the changeset viewer.