Skip to content

Commit

Permalink
Merge branch 'release/3.0.0-beta.10' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Mar 19, 2018
2 parents 76b5512 + 98ee354 commit febad0c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SEOmatic Changelog

### 3.0.0-beta.10 - 2018.03.18
## Changed
* Reverted incorrect bundle merging

### 3.0.0-beta.9 - 2018.03.18
## Added
* Added `Schema` helper class & controller in preparation for dynamic schema types displayed in the AdminCP
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-seomatic",
"description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3. It is a turnkey SEO system that is comprehensive, powerful, and flexible.",
"type": "craft-plugin",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"keywords": [
"craft",
"cms",
Expand Down
12 changes: 6 additions & 6 deletions src/services/MetaBundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,8 @@ protected function createGlobalMetaBundleForSite(int $siteId, $baseConfig = []):
);
// Merge them together
$metaBundle = MetaBundle::create(ArrayHelper::strictMerge(
$metaBundleDefaults,
$baseConfig
$baseConfig,
$metaBundleDefaults
));
if ($metaBundle) {
$this->updateMetaBundle($metaBundle, $siteId);
Expand Down Expand Up @@ -728,8 +728,8 @@ protected function createMetaBundleFromSection(Section $section, int $siteId, $b
);
// Merge them together
$metaBundle = MetaBundle::create(ArrayHelper::strictMerge(
$metaBundleDefaults,
$baseConfig
$baseConfig,
$metaBundleDefaults
));
if ($metaBundle) {
$this->updateMetaBundle($metaBundle, $siteId);
Expand Down Expand Up @@ -799,8 +799,8 @@ protected function createMetaBundleFromCategory(CategoryGroup $category, int $si
);
// Merge them together
$metaBundle = MetaBundle::create(ArrayHelper::strictMerge(
$metaBundleDefaults,
$baseConfig
$baseConfig,
$metaBundleDefaults
));
if ($metaBundle) {
$this->updateMetaBundle($metaBundle, $siteId);
Expand Down

0 comments on commit febad0c

Please sign in to comment.