Forward a sid to GPM when downloading a premium package via CLI

This commit is contained in:
Djamil Legato
2020-10-29 15:48:34 -07:00
parent 306c0505a6
commit 5bf1ec0fd9
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
* Upgraded `bin/composer.phar` to `2.0.2` which is all new and much faster
1. [](#improved)
* Updated bundled JQuery to latest version `3.5.1`
* Forward a `sid` to GPM when downloading a premium package via CLI
1. [](#bugfix)
* *Menu Visibility Requires Access* Security option setting wrong frontmatter [login#265](https://github.com/getgrav/grav-plugin-login/issues/265)
* Accessing page with unsupported file extension (jpg, pdf, xsl) will use wrong mime type [#3031](https://github.com/getgrav/grav/issues/3031)

View File

@@ -570,7 +570,8 @@ class InstallCommand extends ConsoleCommand
[
'slug' => $package->slug,
'filename' => $package->premium['filename'],
'license_key' => $license
'license_key' => $license,
'sid' => md5(GRAV_ROOT)
]
));