Actions
Bug #21854
closedURL's with a very long Number in type returns a false Number in error message
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2009-12-13
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If a page-type (pageNum) doesn't exist I get an Error, that's okay
E.g http://localhost/index.php?type=2
I get a page with:
Error!
The page is not configured! [type= 2][]
That's okay.
On the other hand, if I use a very long number in URL-paramter 'type' it returns a false Number in the error message, e.g.:
http://localhost/index.php?type=11111111111111111111
--> The page is not configured! [type= 9223372036854775807][]
or even
http://localhost/index.php?type=1111111111111111111111111
--> The page is not configured! [type= 9223372036854775807][]
(the same wrong number)
It seems to stand in context with data type 'int'
Number 9223372036854775807 is 2^63 - 1
(issue imported from #M13027)
Actions