Skip to content

Commit 9e132da

Browse files
committed
Fix github actions
1 parent 36d0e5e commit 9e132da

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.check-author.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ mapping:
99
"Andreas Isaak <[email protected]>": "Andreas Isaak <[email protected]>"
1010
"Christopher Boelter <[email protected]>": "cboelter <[email protected]>"
1111
"Andreas Dziemba <[email protected]>":
12-
- "Andreas Dziemba <[email protected]>"
13-
- "Andreas Dziemba <[email protected]>"
14-
- "adziemba <[email protected]>"
15-
- "Andreas Dziemba <dziemba@men-at-work-de>"
12+
- "Andreas Dziemba <[email protected]>"
13+
- "Andreas Dziemba <[email protected]>"
14+
- "adziemba <[email protected]>"
15+
- "Andreas Dziemba <dziemba@men-at-work-de>"
16+
'Ingolf Steinhardt <[email protected]>':
17+
- 'zonky <[email protected]>'
18+
- 'zonky2 <[email protected]>'
1619

1720
copy-left:
1821
"David Maack <[email protected]>":

src/Attribute/TableMulti.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ public function __construct(
127127
*/
128128
public function searchFor($strPattern)
129129
{
130-
$query = 'SELECT DISTINCT t.item_id FROM tl_metamodel_tabletext AS t WHERE t.value LIKE :value AND t.att_id = :id';
130+
$query =
131+
'SELECT DISTINCT t.item_id FROM tl_metamodel_tabletext AS t WHERE t.value LIKE :value AND t.att_id = :id';
131132
$statement = $this->connection->prepare($query);
132133
$statement->bindValue('value', str_replace(['*', '?'], ['%', '_'], $strPattern));
133134
$statement->bindValue('id', $this->get('id'));
@@ -231,7 +232,7 @@ public function setDataFor($arrValues)
231232
}
232233

233234
$updateSql = $queryBuilder->getSQL();
234-
$sql .= ' ON DUPLICATE KEY ' . str_replace($this->getValueTable() . ' SET ', '', $updateSql);
235+
$sql .= ' ON DUPLICATE KEY ' . str_replace($this->getValueTable() . ' SET ', '', $updateSql);
235236

236237
$this->connection->executeQuery($sql, $parameters);
237238
}

0 commit comments

Comments
 (0)