Actions
Bug #23566
closedAre you sure that if.isGreaterThan and if.isLessThan working fine?
Start date:
2010-09-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I wonder about the result of this:
page.10000 = TEXT
page.10000{
if{
value = 9
isGreaterThan = 10
}
value = 9 greater 10?
}
the result is, that 9 is greater than 10?
(issue imported from #M15856)
Updated by Chris topher about 14 years ago
The naming of the options is confusing, but what you describe is the expected behaviour.
See http://typo3.org/documentation/document-library/core-documentation/doc_core_tsref/4.3.2/view/1/5/#id2507365
.value=10
.isGreaterThan=11
This returns true, because the value of .isGreaterThan is bigger than the basic value 10.
This works as expected.
Updated by Chris topher about 14 years ago
If you have further questions, please write a mail to the mailing lists at http://lists.typo3.org
Actions