Skip to content

Commit

Permalink
FIX: MSF Fields Overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
BadPixxel committed Sep 4, 2020
1 parent c019398 commit 110363c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ services:
################################################################################
# Prestashop 1.6
prestashop_1_6:
image: prestashop/pestashop:1.6-7.1-apache
image: prestashop/prestashop:1.6-7.1-apache
container_name: prestashop_1_6
depends_on:
- mysql
Expand Down
5 changes: 4 additions & 1 deletion modules/splashsync/src/Objects/Core/MultishopObjectTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public function fields()
}
//====================================================================//
// Load Core Fields from All Shop Context
return MSF::loadFields($this->coreFields());
$fields = MSF::loadFields($this->coreFields());
//====================================================================//
// Redo Override Fields from Local Configurator
return Splash::configurator()->overrideFields(self::getType(), $fields);
}

/**
Expand Down

0 comments on commit 110363c

Please sign in to comment.