Skip to content

Commit

Permalink
Merge branch 'release/1.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
BracketSpaceWorker committed Nov 15, 2021
2 parents 037fe28 + c9244d7 commit c29a594
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.6

### Fixed
- The `the_esc()` method is now wired correctly.

## 1.1.5

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function render() {
};

$the_esc_method = [ $this, 'the_esc' ];
$the_esc = function () use ( $the_method ) {
$the_esc = function () use ( $the_esc_method ) {
return call_user_func_array( $the_esc_method, func_get_args() );
};

Expand Down

0 comments on commit c29a594

Please sign in to comment.