Hi.
I have an issue in the T4 component where I have to modify the code after an update.
In the file plugins/system/t4/themes/base/html/mod_breadcrumbs/default.php on line 15 there is the following code: -
<nav role="navigation" aria-label="<?php echo $module->name; ?>">
This generates the following error: -
Warning: Undefined property: stdClass::$name in /plugins/system/t4/themes/base/html/mod_breadcrumbs/default.php on line 15
I have to modify the line to the following to make the error go away.
<nav role="navigation" aria-label="<?php if (isset($module->name)) echo $module->name; ?>">
Any ideas what's happening here?