-
Notifications
You must be signed in to change notification settings - Fork 93
Do only not escape twit filter output when EditInPlace is false #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -35,7 +35,7 @@ | |||
"matthiasnoback/symfony-dependency-injection-test": "^1.0", | |||
"guzzlehttp/psr7": "^1.3", | |||
"nyholm/nsa": "^1.0", | |||
"nyholm/symfony-bundle-test": "^1.0.1" | |||
"nyholm/symfony-bundle-test": "^1.0.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will fix:
Symfony\Component\DependencyInjection\Exception\LogicException: Annotations cannot be enabled as the Doctrine Cache library is not installed.
Twig/TranslationExtension.php
Outdated
$value = $this->transchoice($message, $count, $arguments, $domain, $locale); | ||
|
||
if ($this->escapeOutput()) { | ||
return twig_escape_filter($env, $value, 'html', null, true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exept for the double space here, this PR is just perfect! 🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. I thought StyleCI would fix that.
(Friendly ping) Maybe @GrahamCampbell wants to know about this.
Nice solution 👍 Thx! |
This will fix #100 and replace #101