FriendsOfTYPO3 / introduction

The official Introduction Package for TYPO3
https://typo3.org/
GNU General Public License v2.0
18 stars 27 forks source link

[BUGFIX] Cast page uid for error handler to int #64

Closed andreaskienast closed 2 years ago

andreaskienast commented 2 years ago

With sqlite it may happen that the page loaded from the database is returned as a string, while the method getNotFoundErrorPageUid expects an integer. To circumvent this, the uid is cast to int.

gilbertsoft commented 2 years ago

Thanks!