Actions
Bug #85296
closedWrong strlen check in DoubleMetaPhoneUtility
Start date:
2018-06-17
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
while (strlen($this->primary) < 4 || strlen($this->secondary < 4)) {
should be
while (strlen($this->primary) < 4 || strlen($this->secondary) < 4) {
Actions