Skip to content

Commit

Permalink
fixed a missing public on a service
Browse files Browse the repository at this point in the history
  • Loading branch information
koertho committed Apr 8, 2020
1 parent d1c4a39 commit 105e5e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.8.5] - 2020-04-08
- fixed missing public attribute on service

## [1.8.4] - 2020-04-08
- added `disable404` in reader config

Expand Down
2 changes: 1 addition & 1 deletion src/Module/ModuleReader.php
Expand Up @@ -140,7 +140,7 @@ protected function compile()
$this->manager->doFieldDependentRedirect();
$this->manager->setHeadTags();

if(null !== $this->item) {
if (null !== $this->item) {
$this->Template->item = $this->manager->getItem()->parse();
}
}
Expand Down
1 change: 1 addition & 0 deletions src/Resources/config/listener.yml
@@ -1,6 +1,7 @@
services:
huh.reader.listener.callback.readerconfigelement:
class: HeimrichHannot\ReaderBundle\EventListener\ReaderConfigCallbackListener
public: true
arguments: ['@contao.framework', '@translator', '@huh.utils.model']

HeimrichHannot\ReaderBundle\EventListener\AdjustFilterValueEventListener:
Expand Down

0 comments on commit 105e5e5

Please sign in to comment.