Notice: Undefined variable: id in JOOMLA_ROOT\libraries\cms\installer\adapter\module.php on line 501
So I was debugging a module I had installed and added in a var_dump;die; in the triggerManifestScript
method in the installer adapter class and discovered this bug. When checking for an extension in the past we used to grab it's ID for use there. Now we don't so we get this error. It's not a big deal I think. But something that should be fixed. Not time to go into it any further at the moment.
Labels |
Added:
?
|
Ahh awesome. Closing this then.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2014-12-28 17:12:32 |
It's fixed as a side-effect of #5514 but if that doesn't get accepted for whatever reason the line should change to check
$this->currentExtensionId
.