Skip to content
Snippets Groups Projects
Commit c70ccb1b authored by alejandro cabarcos's avatar alejandro cabarcos
Browse files

Issue #0: Fixed wildcard mapping on Posts migration

parent 578ddb56
Branches
Tags 1.0.0-alpha6
No related merge requests found
Pipeline #118935 passed with warnings
......@@ -133,7 +133,7 @@ class Posts extends SqlBase {
$query->join(
$this->getTableName('postmeta'),
'pm',
'p.id = pm.post_id and pm.meta_key = :attached_file',
'p.id = pm.post_id and pm.meta_key = :meta_key',
[':meta_key' => $meta_key],
);
$query->condition('p.id', $post_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment