mrrsm Posted January 25, 2019 Report Posted January 25, 2019 Lines 901 and 904 of vultur.php are not using the new method calls to getModuleRow which causes them to error out as they try to directly access a private member of their parent class. // Get the available templates $templates = $this->getTemplates($this->module_row, $package); // Get the available locations $locations = $this->getLocations($this->module_row, $package); They should probably look more like // Get the available templates $templates = $this->getTemplates($this->getModuleRow($package->module_row), $package); // Get the available locations $locations = $this->getLocations($this->getModuleRow($package->module_row), $package); At least based on the other modules I looked at activa 1
Tyson Posted February 13, 2019 Report Posted February 13, 2019 Thanks! This will be fixed in CORE-3040 for v4.5.0. Michael 1
Recommended Posts