-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUGFIX] The function errorAction()
needs to exists in NewTenantController
#1091
[BUGFIX] The function errorAction()
needs to exists in NewTenantController
#1091
Conversation
Without this function the backend module doesn't work
d662054
to
a639749
Compare
a639749
to
6fcd94f
Compare
errorAction()
needs to exists in NewTenantController
errorAction()
needs to exists in NewTenantController
I don't understand why there is a problem at all. |
I don't know but the fact is that without this function creation of the data in backend doesn't work. The error says that this function is missing. No other more detailed message was displayed. |
OK, but then the method should return the correct result type. Does something like |
5d756d6
to
297ff97
Compare
297ff97
to
abf978b
Compare
Changes in the last commit are working correctly with TYPO3 11.x (https://github.com/TYPO3/typo3/blob/629eb841ea8e92399bdccd63e80f2681510665bc/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php#L753), but with TYPO3 10.x there is an error because of incompatible return type (https://github.com/TYPO3/typo3/blob/808ef61a53bc1e7ef65b715c13727b0f2d086c24/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php#L650). |
The only difference seems to be that in TYPO3v10 the result of |
Since Codacy and PHPStan are fine with the current state, I am as well. ;o) |
As explained here kitodo#1091 and here kitodo#1111 Signed-off-by: Christos Sidiropoulos <[email protected]>
Without this function the backend module doesn't work