Skip to content

Commit

Permalink
Release 4.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Dec 4, 2023
2 parents adb574f + 22f21b9 commit e5d3c52
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v4.6.8](https://github.com/userfrosting/UserFrosting/compare/v4.6.7...v4.6.8)
### Fix
- Fix missing render context arg ([#1226](https://github.com/userfrosting/UserFrosting/pull/1226)) - Thanks [@phillmac](https://github.com/phillmac) !
- Fix [#1227](https://github.com/userfrosting/UserFrosting/issues/1227) - HTML in page_description block bleed in the template

## [v4.6.7](https://github.com/userfrosting/UserFrosting/compare/v4.6.5...v4.6.7)

### Fix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public function renderGenericResponse()
return $this->response
->withStatus($this->statusCode)
->withHeader('Content-type', $this->contentType)
->write($template->render());
->write($template->render([]));
}
}
3 changes: 2 additions & 1 deletion app/sprinkles/core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
}
],
"require": {
"composer/semver": "^3.2.4",
"carbonphp/carbon-doctrine-types": "^1.0.0",
"composer/semver": "^3.2.4",
"doctrine/dbal": "^2.5",
"filp/whoops": "^2.14.0",
"psr/log": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion app/sprinkles/core/templates/pages/abstract/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta charset="utf-8">
<meta name="generator" content="UserFrosting" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="{% block page_description %}This page has not yet been configured.{% endblock %}">
<meta name="description" content="{{ block('page_description')|e }}">
<meta name="author" content="{% block page_author %}{{ site.author }}{% endblock %}">

<title>{{ site.title }} | {% block page_title %}New Page{% endblock %}</title>
Expand Down

0 comments on commit e5d3c52

Please sign in to comment.