We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c2baae + 3826984 commit 64f3ec6Copy full SHA for 64f3ec6
api/v3/Job.php
@@ -221,7 +221,9 @@ function _civicrm_api3_job_send_reminder(&$params) {
221
* @return array
222
*/
223
function civicrm_api3_job_mail_report($params) {
224
+ ob_start();
225
$result = CRM_Report_Utils_Report::processReport($params);
226
+ $output = ob_get_clean();
227
228
if ($result['is_error'] == 0) {
229
// this should be handling by throwing exceptions but can't remove until we can test that.
0 commit comments