Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
  • v0.10
  • 0.10.0
  • 0.10.1
  • 0.10.2
  • 0.10.3
  • 0.10.4
  • 0.10.5
  • 0.10.6
  • 0.9.0
  • 0.9.1
11 results

Target

Select target project
  • wpdesk/wp-init
1 result
Select Git revision
  • main
  • v0.10
  • 0.10.0
  • 0.10.1
  • 0.10.2
  • 0.10.3
  • 0.10.4
  • 0.10.5
  • 0.10.6
  • 0.9.0
  • 0.9.1
11 results
Show changes
Commits on Source (2)
# wp-init changelog
## [0.10.2] - 2024-10-08
### Fixed
- Typo in configuration parameter name.
## [0.10.1] - 2024-10-08
### Changed
- `wpinit` CLI command automatically seeks for potential plugin file, instead of relying on passing it as argument.
......
......@@ -51,7 +51,7 @@ class ConditionalExtension implements Extension {
if ( class_exists( \WPDesk\License\LicenseServer\PluginRegistrator::class ) ) {
$definitions[ WPDeskLicenseBridge::class ] = ( new AutowireDefinitionHelper() )
->constructorParameter( 'proudct_id', $config->get( 'product_id' ) )
->constructorParameter( 'product_id', $config->get( 'product_id' ) )
->constructorParameter( 'shops', (array) $config->get( 'shops', [] ) );
}
......