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/56101
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Stefan Neufeind <typo3.neufeind@speedpartner.de>
Tested-by: Stefan Neufeind <typo3.neufeind@speedpartner.de>
  • Loading branch information
lolli42 authored and neufeind committed Mar 12, 2018
1 parent 1751567 commit ee65945
Showing 1 changed file with 1 addition and 1 deletion.
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 ee65945

Please sign in to comment.