Cockpit-HQ / Cockpit

Cockpit Core - Content Platform
https://getcockpit.com
Other
388 stars 47 forks source link

PHP warning of access array offset on null in License helper #218

Closed pshemek closed 2 months ago

pshemek commented 2 months ago

Trying to access array offset on null in /public_html/modules/System/Helper/License.php on line 87

public function isProprietary() {
        return (json_decode(file_get_contents(APP_DIR.'/composer.json'), true)['license'] === 'proprietary');
}
aheinze commented 2 months ago

Do you have the composer.json file missing?

pshemek commented 2 months ago

It turned out that I had the composer.json file formatted incorrectly. Thanks for the direction.