RMMarketplace\XFRM\Entity\ResourceItem.php
code :
suggestion from
to
For better maybe keep to save return true only
code :
suggestion from
PHP:
public function isForSaleInMarketplace()
{
if (($this->xfa_rmmp_type == 'none')
|| ($this->Category->xfa_rmmp_conf == 0))
{
return false;
}
if ($this->xfa_rmmp_amount > 0.00)
{
return true;
}
return false;
}
PHP:
public function isForSaleInMarketplace()
{
if ($this->xfa_rmmp_amount > 0.00)
{
return true;
}
return false;
}
For better maybe keep to save return true only