X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep103.php;h=9c694becb7a623398a943fe6a8602957fcf64a33;hb=017f59aff3a7c74d7eb32cb93d343d5d6eb7cd20;hp=271d6818c8453e8b8943c4c0d4a7f2dbcc41d525;hpb=1019600a78e74485f965c2cfe7108ca49259de1b;p=fa-stable.git diff --git a/reporting/rep103.php b/reporting/rep103.php index 271d6818..9c694bec 100644 --- a/reporting/rep103.php +++ b/reporting/rep103.php @@ -215,7 +215,7 @@ function print_customer_details_listing() $rep->TextCol(1, 2, _('Price List') . ": " . $myrow['sales_type']); $rep->TextCol(2, 3, $myrow['br_name']); $rep->NewLine(); - $adr = Explode("\n", $myrow['address']); + $adr = $myrow['address'] != NULL ? Explode("\n", $myrow['address']) : array(); if ($myrow['br_post_address'] == '') $adr2 = Explode("\n", $myrow['br_address']); else