Skip to content

Commit

Permalink
**Bug Fix:** Undefined variable $caSe_insensitive, corrected in thi…
Browse files Browse the repository at this point in the history
…s release.
  • Loading branch information
jaswsinc committed Dec 8, 2016
1 parent ca3b5ec commit 1b4a89e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v$s

- **Bug Fix:** Undefined variable `$caSe_insensitive`, corrected in this release.

## v161207

- Adding new config option: `amp_exclusions_enable` (default is enabled). This improves compatibility with [Accelerated Mobile Pages](https://www.ampproject.org/). When this option is enabled and the URI being compressed ends with `/amp/`, or the document contains a top-level `<html ⚡>` tag (`<html amp>` is accepted as well), then features which are incompatible with [Accelerated Mobile Pages](https://www.ampproject.org/) will be disabled accordingly, regardless of your other settings. See [Issue #695](https://github.com/websharks/comet-cache/issues/695) in the Comet Cache repo.
Expand Down
2 changes: 1 addition & 1 deletion src/includes/classes/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -2581,7 +2581,7 @@ protected function substrReplace($value, $replace, $start, $length = null)
*
* @return string|array|object Values after ONE string replacement deeply.
*/
protected function replaceOnce($needle, $replace, $value, $case_insensitive = false)
protected function replaceOnce($needle, $replace, $value, $caSe_insensitive = false)
{
if (is_array($value) || is_object($value)) {
foreach ($value as $_key => &$_value) {
Expand Down

0 comments on commit 1b4a89e

Please sign in to comment.