diff --git a/administrator/components/com_categories/models/categories.php b/administrator/components/com_categories/models/categories.php index afe98851f241a..cb6be0d65994e 100644 --- a/administrator/components/com_categories/models/categories.php +++ b/administrator/components/com_categories/models/categories.php @@ -361,7 +361,7 @@ public function getItems() $extension = $this->getState('filter.extension'); // Load Helper file of the component for which com_categories displays the categories - $classname = ucfirst(substr($extension, 4)) . 'Helper'; + $classname = ucfirst(str_replace('.', '', substr($extension, 4))) . 'Helper'; if (class_exists($classname) && method_exists($classname, 'countItems')) {