Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into db-clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko committed Jun 21, 2019
2 parents eb6aace + bab0bc8 commit c31d0c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addons/vultr/models/whmcs/service/customFields/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ function load()
FROM tblcustomfieldsvalues V
JOIN tblcustomfields C
ON C.id = V.fieldid
AND C.type = \'product\'
JOIN tblhosting H
ON V.relid = H.id
And C.relid = H.packageid
WHERE H.id = :account_id:';
AND C.type = \'product\'
JOIN tblhosting H
ON V.relid = H.id
And C.relid = H.packageid
WHERE H.id = :account_id';

$result = \MGModule\vultr\mgLibs\MySQL\Query::query($query, array(':account_id:' => $this->serviceID));
$result = \MGModule\vultr\mgLibs\MySQL\Query::query($query, array('account_id' => $this->serviceID));

while ($row = $result->fetch())
{
Expand Down

0 comments on commit c31d0c3

Please sign in to comment.