Actions
Bug #80744
closedExtbase\Persistence\Repository IN statement string values in custom queries does not has quotes
Start date:
2017-04-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Steps to reproduce
- Create a custom query with a IN statement
- Example query on tt_content table
$query->matching( $query->logicalAnd([ $query->in( 'CType', $CTypes // <- this string values does not has quotes ), $query->in( 'pid', $pages ) ]) );
Possible workaround
if (TYPO3_branch === '8.7') { $CTypes = array_map(function($a) { return '"'.$a.'"';}, $CTypes); }
Actions