You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/performance-lab/includes/site-health/bfcache-compatibility-headers/helper.php
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -46,12 +46,13 @@ function perflab_bfcache_compatibility_headers_check(): array {
46
46
$result['status'] = 'recommended';
47
47
$result['description'] = '<p>' . wp_kses(
48
48
sprintf(
49
-
/* translators: %s is the error code */
50
-
__( 'The request to check the Cache-Control response header responded with error code <code>%s</code> and the following error message:', 'performance-lab' ),
51
-
esc_html( (string) $response->get_error_code() )
49
+
/* translators: 1: the error code, 2: the error message */
50
+
__( 'The request to check the Cache-Control response header responded with error code <code>%1$s</code> and the following error message: %2$s.', 'performance-lab' ),
0 commit comments