More dumbass fixes.

This commit is contained in:
flash 2022-02-15 22:39:29 +00:00
parent fef958b10b
commit ddadb1d068

View file

@ -134,10 +134,10 @@ foreach($data->commits as $commit) {
$changeId = $changeCreate->executeGetId();
if(!empty($tags) && !empty($changeId)) {
$changeTag->bindValue('change_id', $changeId);
$changeTag->bind('change_id', $changeId);
foreach($tags as $tag) {
$changeTag->bindValue('tag_id', $tag);
$changeTag->bind('tag_id', $tag);
$changeTag->execute();
}
}