From: Jon goldberg Date: Wed, 9 Sep 2015 21:07:20 +0000 (-0400) Subject: CRM-17193 - CiviReport - Remove unnecessary spaces from empty CSV cells when exportin... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b5be5afe62771ce35e6ae8a81751d54d19668f39;p=civicrm-core.git CRM-17193 - CiviReport - Remove unnecessary spaces from empty CSV cells when exporting reports --- diff --git a/CRM/Report/Utils/Report.php b/CRM/Report/Utils/Report.php index a1712980a9..4999acc911 100644 --- a/CRM/Report/Utils/Report.php +++ b/CRM/Report/Utils/Report.php @@ -286,7 +286,7 @@ WHERE inst.report_id = %1"; $displayRows[$v] = '"' . $value . '"'; } else { - $displayRows[$v] = " "; + $displayRows[$v] = ""; } } // Add the data row.