DEL unnecessary code

This commit is contained in:
2023-10-06 04:47:51 +02:00
parent 7f79667409
commit 2b5e287a78
7 changed files with 22 additions and 99 deletions

View File

@ -17,14 +17,4 @@ use Joomla\CMS\MVC\Controller\BaseController;
class DisplayController extends BaseController
{
protected $default_view = 'parts';
public function display($cachable = false, $urlparams = [])
{
$view = $this->input->get('view', $this->default_view);
$layout = $this->input->get('layout', 'default');
$id = $this->input->getInt('id');
return parent::display();
}
}
}