From a80761efa25cd0d184376f712dac4efab15ec2ca Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Thu, 29 Oct 2009 20:11:29 -0400 Subject: [PATCH] Default to an Http response --- framework/Controller/lib/Horde/Controller/Dispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Controller/lib/Horde/Controller/Dispatcher.php b/framework/Controller/lib/Horde/Controller/Dispatcher.php index db8611629..b6ac248be 100644 --- a/framework/Controller/lib/Horde/Controller/Dispatcher.php +++ b/framework/Controller/lib/Horde/Controller/Dispatcher.php @@ -114,8 +114,8 @@ class Horde_Controller_Dispatcher $t->push(); if (! $response instanceof Horde_Controller_Response_Base) { - // $response = new Horde_Controller_Response_Http; - $response = new Horde_Controller_Response_Base; + $response = new Horde_Controller_Response_Http(); + // $response = new Horde_Controller_Response_Base(); } // Recognize routes and process request -- 2.11.0