14 lines
No EOL
252 B
PHP
14 lines
No EOL
252 B
PHP
<?php
|
|
|
|
class ErrorController extends Zend_Controller_Action
|
|
{
|
|
public function errorAction()
|
|
{
|
|
$this->view->args = $this->_request->getParams();
|
|
|
|
$this->view->error = $this->_request->getParam('error_handler');
|
|
|
|
|
|
|
|
}
|
|
} |