Files
PrestaShop/controllers/admin/AdminNotFoundController.php
2011-10-31 10:36:17 +00:00

14 lines
302 B
PHP

<?php
class AdminNotFoundControllerCore extends AdminController
{
public function initContent()
{
$this->_errors[] = Tools::displayError('Controller not found');
$tpl_vars['controller'] = Tools::getvalue('controller');
$this->context->smarty->assign($tpl_vars);
parent::initContent();
}
}