Skip to content

Commit

Permalink
Fix #1227
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Sep 22, 2023
1 parent 4ebd788 commit ca9cf96
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
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
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 ca9cf96

Please sign in to comment.