From e50ed221a0139d7eb912ce19980c366369f7a949 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Wed, 15 May 2024 11:58:32 -0600 Subject: [PATCH] lint --- inc/pantheon-page-cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/pantheon-page-cache.php b/inc/pantheon-page-cache.php index 6a50395..418b700 100644 --- a/inc/pantheon-page-cache.php +++ b/inc/pantheon-page-cache.php @@ -364,7 +364,7 @@ public function view_settings_page() { private function get_cache_control_header_value() { if ( ! is_admin() && ! is_user_logged_in() ) { // Use the filtered default max-age if applicable. - $ttl = apply_filters( 'pantheon_cache_default_max_age' , absint( $this->options['default_ttl'] ) ); + $ttl = apply_filters( 'pantheon_cache_default_max_age', absint( $this->options['default_ttl'] ) ); if ( $ttl < 60 && isset( $_ENV['PANTHEON_ENVIRONMENT'] ) && 'live' === $_ENV['PANTHEON_ENVIRONMENT'] ) { $ttl = 60; }