Solved XF\Extension::removeClassExtensions doesn't check existence

This topic has been solved
P

pegasus

Guest
In XF\Extension::removeClassExtensions, we have:
Code:

Code:
foreach ($this->classExtensions[$class] AS $subclass)
{
   unset($this->inverseExtensionMap[$subclass]);
}
However, this does not check that the key $this->classExtensions[$class] exists before looping it, which throws an invalid key error and a foreach error. Since XF\Extension also provides no getter for $this->classExtensions, there is no easy way for an add-on to know whether this key exists if they need to call...

Read more

Continue reading...