Skip to content

Commit

Permalink
11.6.2 release
Browse files Browse the repository at this point in the history
Possible fix for #43
  • Loading branch information
Zillion01 committed Feb 26, 2023
1 parent 6070ddd commit 1b25981
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Classes/Controller/QuestionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function initializeAction(): void
*/
public function listAction(): ResponseInterface
{
$restrictToCategories = $this->settings['questions']['categories'];
$restrictToCategories = (array)$this->settings['questions']['categories'];
$excludeAlreadyDisplayedQuestions = (int)$this->settings['excludeAlreadyDisplayedQuestions'];
$questions = $this->questionRepository->findQuestionsWithConstraints(
$restrictToCategories,
Expand Down
5 changes: 4 additions & 1 deletion Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@

ChangeLog
=========
11.6.2
"""""
#. Possible fix for bug excludeAlreadyDisplayedQuestions #43

11.6.1
"""""
#. PHP 7.4 compatibility #41 (thx to Tobias Bünter)
#. Possible fix for bug excludeAlreadyDisplayedQuestions #43

11.6.0
"""""
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[general]
project = Frequently Asked Questions
release = 11.6.1
release = 11.6.2
version = 11.6
copyright = 2023

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ conf.py:
copyright: 2023
project: jpFAQ
version: 11.6
release: 11.6.1
release: 11.6.2
intersphinx_mapping:
t3tsref:
- http://docs.typo3.org/typo3cms/TyposcriptReference/
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'author' => 'Jacco van der Post',
'author_email' => '[email protected]',
'state' => 'stable',
'version' => '11.6.1',
'version' => '11.6.2',
'constraints' =>
[
'depends' =>
Expand Down

0 comments on commit 1b25981

Please sign in to comment.