@@ -71,10 +71,10 @@ function es_optimizer_init_plugin(): void {
7171
7272 // Initialize admin functionality.
7373 es_optimizer_init_admin ();
74-
74+
7575 // Initialize frontend optimizations.
7676 es_optimizer_init_frontend_optimizations ();
77-
77+
7878 // Initialize plugin settings link.
7979 es_optimizer_init_plugin_links ();
8080}
@@ -90,7 +90,7 @@ function es_optimizer_activate_plugin(): void {
9090 if ( false === get_option ( 'es_optimizer_options ' ) ) {
9191 add_option ( 'es_optimizer_options ' , es_optimizer_get_default_options () );
9292 }
93-
93+
9494 // Clear any cached data.
9595 es_optimizer_clear_options_cache ();
9696}
@@ -104,7 +104,7 @@ function es_optimizer_activate_plugin(): void {
104104function es_optimizer_deactivate_plugin (): void {
105105 // Clear any cached data on deactivation.
106106 es_optimizer_clear_options_cache ();
107-
107+
108108 // Note: We don't delete options on deactivation to preserve user settings.
109109 // Options are only deleted on plugin uninstall.
110110}
@@ -612,14 +612,14 @@ function es_optimizer_show_rejection_notice( array $rejected_domains, string $co
612612 }
613613
614614 if ( 'preconnect ' === $ context ) {
615- $ message = sprintf (
615+ $ message = sprintf (
616616 // translators: %s is the list of rejected domain names.
617617 esc_html__ ( 'Some preconnect domains were rejected for security reasons: %s ' , 'enginescript-site-optimizer ' ),
618618 $ rejected_message
619619 );
620620 $ error_code = 'preconnect_security ' ;
621621 } else {
622- $ message = sprintf (
622+ $ message = sprintf (
623623 // translators: %s is the list of rejected domain names.
624624 esc_html__ ( 'Some DNS prefetch domains were rejected for security reasons: %s ' , 'enginescript-site-optimizer ' ),
625625 $ rejected_message
0 commit comments