Skip to content

Commit

Permalink
Merge branch 'release/3.2.18' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jun 25, 2024
2 parents d4dfbad + c5542c6 commit e153f65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Retour Changelog

## 3.2.18 - 2024.06.25
### Fixed
* Fix a `ParseError` exception that is thrown by older versions of PHP that do not support types for class properties ([#307](https://github.com/nystudio107/craft-retour/issues/307))

## 3.2.17 - 2024.06.24
### Added
* Separate out the plugin settings into **General**, **Statistics**, and **Advanced** tabs
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-retour",
"description": "Retour allows you to intelligently redirect legacy URLs, so that you don't lose SEO value when rebuilding & restructuring a website",
"type": "craft-plugin",
"version": "3.2.17",
"version": "3.2.18",
"keywords": [
"craftcms",
"craft-plugin",
Expand Down
2 changes: 1 addition & 1 deletion src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Settings extends Model
/**
* @var bool Should `no-cache` headers be set on the redirect response to prevent client-side caching?
*/
public bool $setNoCacheHeaders = true;
public $setNoCacheHeaders = true;

/**
* @var bool Should the anonymous ip address of the client causing a 404 be
Expand Down

0 comments on commit e153f65

Please sign in to comment.