PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | admin/exceptions/class-file-size-exception.php +2 -2 18.228.5 View file →
@@ -20,9 +20,9 @@
20 20 public static function externally_hosted( $file_url ) {
21 21 $message = sprintf(
22 22 /* translators: %1$s expands to the requested url */
23 23 __( 'Cannot get the size of %1$s because it is hosted externally.', 'wordpress-seo' ),
24 - $file_url
24 + $file_url,
25 25 );
26 26
27 27 return new self( $message );
28 28 }
@@ -37,9 +37,9 @@
37 37 public static function unknown_error( $file_url ) {
38 38 $message = sprintf(
39 39 /* translators: %1$s expands to the requested url */
40 40 __( 'Cannot get the size of %1$s because of unknown reasons.', 'wordpress-seo' ),
41 - $file_url
41 + $file_url,
42 42 );
43 43
44 44 return new self( $message );
45 45 }