Changeset 49028
- Timestamp:
- 09/21/2020 04:44:35 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r48160 r49028 49 49 * @param object $current Response object for whether WordPress is current. 50 50 * @param array $args { 51 * 52 * 53 * 54 * 55 * 56 * 57 * 58 * 51 * Optional. Arguments for upgrading WordPress core. Default empty array. 52 * 53 * @type bool $pre_check_md5 Whether to check the file checksums before 54 * attempting the upgrade. Default true. 55 * @type bool $attempt_rollback Whether to attempt to rollback the chances if 56 * there is a problem. Default false. 57 * @type bool $do_rollback Whether to perform this "upgrade" as a rollback. 58 * Default false. 59 59 * } 60 60 * @return string|false|WP_Error New WordPress version on success, false or WP_Error on failure. -
trunk/src/wp-includes/functions.php
r48794 r49028 7073 7073 * 7074 7074 * @param array $email_change_email { 7075 * 7076 * 7077 * 7078 * 7079 * 7080 * 7081 * 7082 * 7083 * 7084 * 7085 * 7086 * 7075 * Used to build wp_mail(). 7076 * 7077 * @type string $to The intended recipient. 7078 * @type string $subject The subject of the email. 7079 * @type string $message The content of the email. 7080 * The following strings have a special meaning and will get replaced dynamically: 7081 * - ###OLD_EMAIL### The old site admin email address. 7082 * - ###NEW_EMAIL### The new site admin email address. 7083 * - ###SITENAME### The name of the site. 7084 * - ###SITEURL### The URL to the site. 7085 * @type string $headers Headers. 7086 * } 7087 7087 * @param string $old_email The old site admin email address. 7088 7088 * @param string $new_email The new site admin email address. -
trunk/src/wp-includes/ms-functions.php
r48601 r49028 2836 2836 * 2837 2837 * @param array $email_change_email { 2838 * 2839 * 2840 * 2841 * 2842 * 2843 * 2844 * 2845 * 2846 * 2847 * 2848 * 2849 * 2838 * Used to build wp_mail(). 2839 * 2840 * @type string $to The intended recipient. 2841 * @type string $subject The subject of the email. 2842 * @type string $message The content of the email. 2843 * The following strings have a special meaning and will get replaced dynamically: 2844 * - ###OLD_EMAIL### The old network admin email address. 2845 * - ###NEW_EMAIL### The new network admin email address. 2846 * - ###SITENAME### The name of the network. 2847 * - ###SITEURL### The URL to the site. 2848 * @type string $headers Headers. 2849 * } 2850 2850 * @param string $old_email The old network admin email address. 2851 2851 * @param string $new_email The new network admin email address. -
trunk/src/wp-includes/user.php
r48782 r49028 2050 2050 * 2051 2051 * @param array $pass_change_email { 2052 * 2052 * Used to build wp_mail(). 2053 2053 * 2054 * 2055 * 2056 * 2057 * 2058 * 2059 * 2060 * 2061 * 2062 * 2063 * 2064 * 2054 * @type string $to The intended recipients. Add emails in a comma separated string. 2055 * @type string $subject The subject of the email. 2056 * @type string $message The content of the email. 2057 * The following strings have a special meaning and will get replaced dynamically: 2058 * - ###USERNAME### The current user's username. 2059 * - ###ADMIN_EMAIL### The admin email in case this was unexpected. 2060 * - ###EMAIL### The user's email address. 2061 * - ###SITENAME### The name of the site. 2062 * - ###SITEURL### The URL to the site. 2063 * @type string $headers Headers. Add headers in a newline (\r\n) separated string. 2064 * } 2065 2065 * @param array $user The original user array. 2066 2066 * @param array $userdata The updated user array. … … 2108 2108 * 2109 2109 * @param array $email_change_email { 2110 * 2110 * Used to build wp_mail(). 2111 2111 * 2112 * 2113 * 2114 * 2115 * 2116 * 2117 * 2118 * 2119 * 2120 * 2121 * 2122 * 2123 * 2112 * @type string $to The intended recipients. 2113 * @type string $subject The subject of the email. 2114 * @type string $message The content of the email. 2115 * The following strings have a special meaning and will get replaced dynamically: 2116 * - ###USERNAME### The current user's username. 2117 * - ###ADMIN_EMAIL### The admin email in case this was unexpected. 2118 * - ###NEW_EMAIL### The new email address. 2119 * - ###EMAIL### The old email address. 2120 * - ###SITENAME### The name of the site. 2121 * - ###SITEURL### The URL to the site. 2122 * @type string $headers Headers. 2123 * } 2124 2124 * @param array $user The original user array. 2125 2125 * @param array $userdata The updated user array.
Note: See TracChangeset
for help on using the changeset viewer.