Ticket #44030: 44030.2.diff
File 44030.2.diff, 2.2 KB (added by , 6 years ago) |
---|
-
src/wp-admin/includes/file.php
2202 2202 $expiration = apply_filters( 'wp_privacy_export_expiration', 3 * DAY_IN_SECONDS ); 2203 2203 $expiration_date = date_i18n( get_option( 'date_format' ), time() + $expiration ); 2204 2204 2205 /* translators: Do not translate EXPIRATION, LINK, EMAIL,SITENAME, SITEURL: those are placeholders. */2205 /* translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are placeholders. */ 2206 2206 $email_text = __( 2207 2207 'Howdy, 2208 2208 … … 2213 2213 2214 2214 ###LINK### 2215 2215 2216 This email has been sent to ###EMAIL###.2217 2218 2216 Regards, 2219 2217 All at ###SITENAME### 2220 2218 ###SITEURL###' … … 2226 2224 * The following strings have a special meaning and will get replaced dynamically: 2227 2225 * ###EXPIRATION### The date when the URL will be automatically deleted. 2228 2226 * ###LINK### URL of the personal data export file for the user. 2229 * ###EMAIL### The email we are sending to.2230 2227 * ###SITENAME### The name of the site. 2231 2228 * ###SITEURL### The URL to the site. 2232 2229 * -
src/wp-includes/user.php
3338 3338 'siteurl' => network_home_url(), 3339 3339 ); 3340 3340 3341 /* translators: Do not translate DESCRIPTION, CONFIRM_URL, EMAIL,SITENAME, SITEURL: those are placeholders. */3341 /* translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: those are placeholders. */ 3342 3342 $email_text = __( 3343 3343 'Howdy, 3344 3344 … … 3352 3352 You can safely ignore and delete this email if you do not want to 3353 3353 take this action. 3354 3354 3355 This email has been sent to ###EMAIL###.3356 3357 3355 Regards, 3358 3356 All at ###SITENAME### 3359 3357 ###SITEURL###' … … 3366 3364 * 3367 3365 * ###DESCRIPTION### Description of the action being performed so the user knows what the email is for. 3368 3366 * ###CONFIRM_URL### The link to click on to confirm the account action. 3369 * ###EMAIL### The email we are sending to.3370 3367 * ###SITENAME### The name of the site. 3371 3368 * ###SITEURL### The URL to the site. 3372 3369 *