Skip to content

Commit

Permalink
[TASK] Show hidden content in backend module "Indexed content" function
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbltr committed Nov 10, 2023
1 parent ec52c42 commit c71f729
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ChangeLog

Upcoming version
[BUGFIX] Replace all occurences of additional word characters, not only the first one. Thanks to K. Quiatkowski. https://github.com/tpwd/ke_search/issues/19
[TASK] Show hidden content in backend module "Indexed content" function

Version 5.1.2, 27 October 2023
[BUGFIX] Keep the original value for "loadFlexformsFromOtherCE" even if the search box plugin has an empty value in the FlexForm which lead to empty search results, thanks to Uwe Hawkeye1909, https://github.com/tpwd/ke_search/issues/142
Expand Down
4 changes: 4 additions & 0 deletions Classes/Controller/BackendModuleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,10 @@ public function getIndexedContent($pageUid)
'<p><strong>Content</strong></p>'
. '<p>' . nl2br($this->encode($row['content'])) . '</p>'
) : '')
. ((trim($row['hidden_content'])) ? (
'<p><strong>Hidden content</strong></p>'
. '<p>' . nl2br($this->encode($row['hidden_content'])) . '</p>'
) : '')
. '</td>'
. '</tr>'
. '</table>'
Expand Down

0 comments on commit c71f729

Please sign in to comment.