Fix after regression of #14886
This commit is contained in:
parent
2f89d526eb
commit
a2efdee865
@ -83,16 +83,17 @@ class Stripe extends CommonObject
|
|||||||
*
|
*
|
||||||
* @param string $mode 'StripeTest' or 'StripeLive'
|
* @param string $mode 'StripeTest' or 'StripeLive'
|
||||||
* @param int $fk_soc Id of thirdparty
|
* @param int $fk_soc Id of thirdparty
|
||||||
|
* @param int $entity Id of entity
|
||||||
* @return string Stripe account 'acc_....' or '' if no OAuth token found
|
* @return string Stripe account 'acc_....' or '' if no OAuth token found
|
||||||
*/
|
*/
|
||||||
public function getStripeAccount($mode = 'StripeTest', $fk_soc = 0)
|
public function getStripeAccount($mode = 'StripeTest', $fk_soc = 0, $entity = 1)
|
||||||
{
|
{
|
||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
$sql = "SELECT tokenstring";
|
$sql = "SELECT tokenstring";
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."oauth_token";
|
$sql .= " FROM ".MAIN_DB_PREFIX."oauth_token";
|
||||||
$sql .= " WHERE service = '".$this->db->escape($mode)."'";
|
$sql .= " WHERE service = '".$this->db->escape($mode)."'";
|
||||||
if (empty($fk_soc)) $sql .= " entity = ".$conf->entity. " AND";
|
$sql .= " AND entity = ".((int) $entity);
|
||||||
if ($fk_soc > 0) {
|
if ($fk_soc > 0) {
|
||||||
$sql .= " AND fk_soc = ".$fk_soc;
|
$sql .= " AND fk_soc = ".$fk_soc;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user