CodeIgniter Forums
Deprecation Error with Wiredesign's HMVC extension on PHP 7.2 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: External Resources (https://forum.codeigniter.com/forumdisplay.php?fid=7)
+--- Forum: Addins (https://forum.codeigniter.com/forumdisplay.php?fid=13)
+--- Thread: Deprecation Error with Wiredesign's HMVC extension on PHP 7.2 (/showthread.php?tid=69505)

Pages: 1 2


RE: Deprecation Error with Wiredesign's HMVC extension on PHP 7.2 - InsiteFX - 02-09-2018

@gusti

If you want answers from private forum messages you need to change your forum profile
to allow private messages otherwise we cannot reply to your message.

Both of the above methods work to fix the problem.


RE: Deprecation Error with Wiredesign's HMVC extension on PHP 7.2 - jatrocades - 02-09-2018

Hello my friends follows down the solution.


PHP Code:
(is_array($module)) ? list($module$params) = array(key($module), current($module)) : $params NULL


Best regards,
João Antonio Trocades


RE: Deprecation Error with Wiredesign's HMVC extension on PHP 7.2 - InsiteFX - 02-09-2018

Your missing the opening parentheses ( and the semi-colon ;


PHP Code:
(is_array($module)) ? list($module$params) = array(key($module), current($module)) : $params NULL