Skip to content

Commit

Permalink
Broken file list block translations fixed. closes #1099
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed Dec 20, 2016
1 parent 321ca9b commit d814d37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ The changelog contains informations about bug fixes, new features or bc breaking

### Fixed

- [#1097](https://github.com/luyadev/luya/issues/1097) Removed unused codes from the UrlManager parseRequest() method.
- [#1111](https://github.com/luyadev/luya/issues/1111) Storage File selection does not display file name cause of not strict comparing method.
- [#1099](https://github.com/luyadev/luya/issues/1099) Broken file list block translations fixed.
- [#1097](https://github.com/luyadev/luya/issues/1097) Removed unused codes from the UrlManager parseRequest() method.

1.0.0-RC2 (29. Nov 2016)
-----------------------
Expand Down
4 changes: 2 additions & 2 deletions modules/cms/src/frontend/blocks/FileListBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public function config()
],
'cfgs' => [
['var' => 'showType', 'label' => Module::t("block_file_list_files_showtype_label"), 'initvalue' => 0, 'type' => 'zaa-select', 'options' => [
['value' => '1', 'label' => Module::t("block_file_list_files_showtype_yes")],
['value' => '0', 'label' => Module::t("block_file_list_files_showtype_no")],
['value' => '1', 'label' => Module::t("block_file_list_showtype_yes")],
['value' => '0', 'label' => Module::t("block_file_list_showtype_no")],
],
],
],
Expand Down

0 comments on commit d814d37

Please sign in to comment.