diff --git a/src/wp-includes/class-wp-recovery-mode-email-service.php b/src/wp-includes/class-wp-recovery-mode-email-service.php
index 040585db27..07eb0df188 100644
|
a
|
b
|
final class WP_Recovery_Mode_Email_Service {
|
| 125 | 125 | $message = __( |
| 126 | 126 | 'Howdy, |
| 127 | 127 | |
| 128 | | Your site recently crashed on ###LOCATION### and may not be working as expected. |
| | 128 | Your site recently crashed and may not be working as expected. |
| 129 | 129 | ###CAUSE### |
| 130 | | Click the link below to initiate recovery mode and fix the problem. |
| | 130 | Please click the link below to initiate recovery mode and fix the problem. |
| 131 | 131 | |
| 132 | 132 | This link expires in ###EXPIRES###. |
| 133 | 133 | |
| 134 | 134 | ###LINK### ###DETAILS### |
| | 135 | |
| | 136 | Thank you |
| | 137 | WordPress.org |
| 135 | 138 | ' |
| 136 | 139 | ); |
| 137 | 140 | $message = str_replace( |
| 138 | 141 | array( |
| 139 | 142 | '###LINK###', |
| 140 | | '###LOCATION###', |
| 141 | 143 | '###EXPIRES###', |
| 142 | 144 | '###CAUSE###', |
| 143 | 145 | '###DETAILS###', |
| 144 | 146 | ), |
| 145 | 147 | array( |
| 146 | 148 | $url, |
| 147 | | 'TBD', |
| 148 | 149 | human_time_diff( time() + $rate_limit ), |
| 149 | 150 | $cause ? "\n{$cause}\n" : "\n", |
| 150 | 151 | $details, |
| … |
… |
This link expires in ###EXPIRES###.
|
| 246 | 247 | |
| 247 | 248 | return $cause; |
| 248 | 249 | } |
| | 250 | |
| | 251 | private function get_location() { |
| | 252 | |
| | 253 | } |
| 249 | 254 | } |