Skip to content
Snippets Groups Projects
Unverified Commit 5bc53829 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix MetaDataStorageHandlerPdo.php

Closes #1703
parent 80bb6371
No related branches found
No related tags found
No related merge requests found
...@@ -182,7 +182,8 @@ class MetaDataStorageHandlerPdo extends MetaDataStorageSource ...@@ -182,7 +182,8 @@ class MetaDataStorageHandlerPdo extends MetaDataStorageSource
} }
// update the entity id to either the key (if not dynamic or generate the dynamic hosted url) // update the entity id to either the key (if not dynamic or generate the dynamic hosted url)
$metadataSet[$d['entity_id']] = $this->updateEntityID($set, $entityId, $data); $data['entityid'] = $entityId;
$metadataSet[$d['entity_id']] = $data;
} }
$indexLookup = $this->lookupIndexFromEntityId($entityId, $metadataSet); $indexLookup = $this->lookupIndexFromEntityId($entityId, $metadataSet);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment