From: eileen Date: Mon, 22 Feb 2016 20:51:02 +0000 (+1300) Subject: Display sql in developer tab in ContributionDetail report X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5e58013e66344c304d40e11c87ae783ca6384863;p=civicrm-core.git Display sql in developer tab in ContributionDetail report Change-Id: Ia4626ced7f00344825a7bc66e1718d7e2505856d --- diff --git a/CRM/Report/Form/Member/ContributionDetail.php b/CRM/Report/Form/Member/ContributionDetail.php index 8ead99bd24..9cab1db6ae 100644 --- a/CRM/Report/Form/Member/ContributionDetail.php +++ b/CRM/Report/Form/Member/ContributionDetail.php @@ -590,6 +590,7 @@ class CRM_Report_Form_Member_ContributionDetail extends CRM_Report_Form { } $sql = "{$this->_select} {$this->_from} {$this->_where} {$this->_groupBy} {$this->_having} {$this->_orderBy} {$this->_limit}"; + $this->addToDeveloperTab($sql); return $sql; }