diff --git a/libraries/src/MVC/View/ListView.php b/libraries/src/MVC/View/ListView.php index 5233e71c3e56..65257af8522d 100644 --- a/libraries/src/MVC/View/ListView.php +++ b/libraries/src/MVC/View/ListView.php @@ -187,7 +187,7 @@ public function display($tpl = null) // Prepare view data $this->initializeView(); - if (!\count($this->items) && \is_callable([$model, 'IsEmptyState']) && $this->isEmptyState = $model->getIsEmptyState()) { + if (!\count($this->items) && \is_callable([$model, 'getIsEmptyState']) && $this->isEmptyState = $model->getIsEmptyState()) { $this->setLayout('emptystate'); }