31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-04 22:50:46 +00:00

Correct implode argument order

This commit is contained in:
SharkyKZ 2019-12-02 09:31:33 +02:00
parent 70992f1e1a
commit 1455d3fe21

View File

@ -398,7 +398,7 @@ class PullsModel extends AbstractModel
$this->getDb()->quote($branch),
);
$data[] = implode($pullData, ',');
$data[] = implode(',', $pullData);
}
}