Skip to content

Commit

Permalink
Merge branch 'release/3.5.28'
Browse files Browse the repository at this point in the history
  • Loading branch information
andykillen committed Jan 19, 2024
2 parents 68b16bd + 3978b98 commit e9e717a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ If you want to build a local production-ready version of the plugin you can run

## Changelog

#### 3.5.28
* Found extra typo and replaced 'sb_optimizer_cach_tags_fine_grain_control' to be 'sb_optimizer_cache_tags_fine_grain_control'

#### 3.5.27
* fixed typo in 'sb_optimizer_cach_tags_fine_grain_control' to be 'sb_optimizer_cache_tags_fine_grain_control'
* added new brand icon
Expand Down
5 changes: 4 additions & 1 deletion Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Donate link: https://servebolt.com
Requires at least: 4.9.2
Tested up to: 6.4.1
Requires PHP: 7.3
Stable tag: 3.5.27
Stable tag: 3.5.28
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -98,6 +98,9 @@ If you're a Servebolt client, please reach out to our Support Team and we'll be

== Changelog ==

= 3.5.28 =
* Found extra typo and replaced 'sb_optimizer_cach_tags_fine_grain_control' to be 'sb_optimizer_cache_tags_fine_grain_control'

= 3.5.27 =
* fixed typo in 'sb_optimizer_cach_tags_fine_grain_control' to be 'sb_optimizer_cache_tags_fine_grain_control'
* added new brand icon
Expand Down
2 changes: 1 addition & 1 deletion servebolt-optimizer.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Servebolt Optimizer
Version: 3.5.27
Version: 3.5.28
Author: Servebolt
Author URI: https://servebolt.com
Description: A plugin that implements Servebolt Security & Performance best practises for WordPress.
Expand Down
2 changes: 1 addition & 1 deletion src/Servebolt/CacheTags/AddCacheTagsHeaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function addCacheTagsHeaders()
$this->setPrefixAndSuffixForTags();
// Filter allows customer to use reduced instruction set for CacheTags.
// If filter returns false, an Accelerated Domains customer will use the Servebolt CDN cache tags.
if($this->driver != 'serveboltcdn' && apply_filters('sb_optimizer_cach_tags_fine_grain_control', true) ) {
if($this->driver != 'serveboltcdn' && apply_filters('sb_optimizer_cache_tags_fine_grain_control', true) ) {
$this->addAuthorTag();
$this->addTaxonomyTermIDTag();
$this->addDateTag();
Expand Down

0 comments on commit e9e717a

Please sign in to comment.