From: Coleman Watts Date: Tue, 26 Aug 2014 06:23:34 +0000 (+0100) Subject: Fix overzealous search/replace X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=fc7897b8681f675198acd657d56e23b8108f5b0f;p=civicrm-core.git Fix overzealous search/replace --- diff --git a/CRM/Utils/JSON.php b/CRM/Utils/JSON.php index 3052403c25..00287a5eaa 100644 --- a/CRM/Utils/JSON.php +++ b/CRM/Utils/JSON.php @@ -44,7 +44,8 @@ class CRM_Utils_JSON { */ static function output($input) { header('Content-Type: application/json'); - CRM_Utils_JSON::output($input); + echo json_encode($input); + CRM_Utils_System::civiExit(); } /**