Created
June 13, 2011 11:07
-
-
Save pkdavies/1022608 to your computer and use it in GitHub Desktop.
Making pre Zend Framework 1.0 applications work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -- set a non-existent error handler + view renderer -- */ | |
$controller->returnResponse(true); | |
$controller->setParam('useDefaultControllerAlways', true); | |
$controller->setParam('noErrorHandler', true); | |
$controller->setParam('noViewRenderer', true); | |
$response = $controller->dispatch(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment