themexpert / digicom

An Open Source Digital Product Selling extension for Joomla! created by ThemeXpert
http://www.themexpert.com
GNU General Public License v2.0
27 stars 18 forks source link

PHP 7.2 - Warning: count(): Parameter must be an array or an object that implements Countable #411

Closed alebak closed 4 years ago

alebak commented 5 years ago

Hello,

Digicom has warning messages in PHP 7.2. Please check the extension where uses the count function.

Warning: count(): Parameter must be an array or an object that implements Countable in [joomla_directroy]/components/com_digicom/views/category/view.html.php on line 102

Warning: count(): Parameter must be an array or an object that implements Countable in [joomla_directroy]/administrator/modules/mod_digicom_menu/tmpl/default.php on line 26

alebak commented 4 years ago

I resolve it...

In /administrator/modules/mod_digicom_menu/tmpl/default.php on line 26:

if (count($menuItems->submenu) > 0) :

Add (array) inside count function:

if (count((array)$menuItems->submenu) > 0) :

Digicom is dead! 👎