We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c7ea85 + d769b23 commit 32b7fabCopy full SHA for 32b7fab
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
#### dev-master
4
5
+#### 3.2.3
6
+* Fix: Typo in bypass logic, [#19](https://github.com/inpsyde/WP-Stash/issues/19)
7
+
8
#### 3.2.2
9
* Fix: `wp_cache_*` functions are no longer declared on `WP_STASH_BYPASS`
10
src/WpStash.php
@@ -212,7 +212,7 @@ private function ensureDropIn(): bool
212
unlink(__FILE__);
213
return;
214
}
215
-if (filter_var(getenv('WP_STASH_BYPASS'), FILTER_VALIDATE_BOOL) === false) {
+if (filter_var(getenv('WP_STASH_BYPASS'), FILTER_VALIDATE_BOOLEAN) === false) {
216
require_once '%1$s';
217
218
0 commit comments