Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Oct 30, 2019
1 parent 8cd27cf commit 7bc6a51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions data/class/SC_SendMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,7 @@ public function getBackendParams($backend)
$arrParams = array();
$objDb = new SC_Helper_DB_Ex();
$objSite = $objDb->sfGetBasisData();
if(!empty($objSite['email04']) && strpos($objSite['email04'],"@") > 0)
{
if (!empty($objSite['email04']) && strpos($objSite['email04'], '@') > 0) {
$arrParams[] = "-f ".$objSite['email04'];
}
break;
Expand Down

0 comments on commit 7bc6a51

Please sign in to comment.