File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 17
17
use TYPO3 \CMS \Core \Messaging \FlashMessageService ;
18
18
use TYPO3 \CMS \Core \Resource \ResourceFactory ;
19
19
use TYPO3 \CMS \Core \Utility \GeneralUtility ;
20
+ use TYPO3 \CMS \Core \Utility \MathUtility ;
20
21
use TYPO3 \CMS \Extbase \Mvc \Controller \ActionController ;
21
22
use TYPO3 \CMS \Extbase \Utility \DebuggerUtility ;
22
23
@@ -71,7 +72,7 @@ public function indexAction():ResponseInterface
71
72
{
72
73
$ viewVariables = [];
73
74
$ combinedIdentifier = GeneralUtility::_GP ('id ' );
74
- if (isset ($ combinedIdentifier ) && \is_string ($ combinedIdentifier )) {
75
+ if (isset ($ combinedIdentifier ) && \is_string ($ combinedIdentifier ) && !MathUtility:: canBeInterpretedAsInteger ( $ combinedIdentifier ) ) {
75
76
$ folder = $ this ->resourceFactory ->getFolderObjectFromCombinedIdentifier ($ combinedIdentifier );
76
77
$ files = [];
77
78
foreach ($ folder ->getFiles () as $ file ) {
You can’t perform that action at this time.
0 commit comments