From 8cbffb199accc3da39b702ba6641cd7a1a6c6e15 Mon Sep 17 00:00:00 2001 From: Mateusz Uzdowski Date: Fri, 15 Jan 2010 03:33:29 +0000 Subject: [PATCH] BUGFIX: HTTPResponse has been replaced with SS_HTTPResponse git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@97023 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/CMSBatchActionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/CMSBatchActionHandler.php b/code/CMSBatchActionHandler.php index 89de7109..e4ae65d4 100644 --- a/code/CMSBatchActionHandler.php +++ b/code/CMSBatchActionHandler.php @@ -99,7 +99,7 @@ class CMSBatchActionHandler extends RequestHandler { $applicableIDs = $ids; } - $response = new HTTPResponse(json_encode($applicableIDs)); + $response = new SS_HTTPResponse(json_encode($applicableIDs)); $response->addHeader("Content-type", "application/json"); return $response; }