Skip to content

Commit

Permalink
[BUGFIX] Protect a forgotten AbstractFormEngineAjaxController method
Browse files Browse the repository at this point in the history
With refactoring in #79159 one method has accidently been set
public while it is obvious it should be protected. Fix that. Patch
is not considered to be breaking since the method is an internal
method of that abstract class.

Resolves: #84201
Related: #79159
Releases: master, 8.7
Change-Id: I0c04ff2d3fe9d68420c80af8831df361eb6f8a13
Reviewed-on: https://review.typo3.org/56100
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Mona Muzaffar <mona.muzaffar@gmx.de>
Tested-by: Mona Muzaffar <mona.muzaffar@gmx.de>
Reviewed-by: Björn Jacob <bjoern.jacob@tritum.de>
Tested-by: Björn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
  • Loading branch information
lolli42 committed Mar 11, 2018
1 parent 14bcf6a commit 72c3121
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ abstract class AbstractFormEngineAjaxController
* @param array $result
* @return array
*/
public function createExecutableStringRepresentationOfRegisteredRequireJsModules(array $result): array
protected function createExecutableStringRepresentationOfRegisteredRequireJsModules(array $result): array
{
if (empty($result['requireJsModules'])) {
return [];
Expand Down

0 comments on commit 72c3121

Please sign in to comment.