ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 30,209
- Points
- 823
Reputation:
PHP:
This extracts the the addon file twice, and if the addon file fails to decode this can silently fail on production copies instead of giving a saner error message...
Read more
Continue reading...
Code:
if (!$zip->extractTo(File::createTempDir(), $jsonFile))
{
$error = \XF::phrase('files_could_not_be_extracted_from_add_on_archive');
return false;
}
$json = json_decode($zip->getFromName($jsonFile), true);
$addOnManager = $this->app->addOnManager();
$title = $json['title'];
$newVersionId = $json['version_id'];
This extracts the the addon file twice, and if the addon file fails to decode this can silently fail on production copies instead of giving a saner error message...
Read more
Continue reading...