diff --git a/application/models/TemplateConfiguration.php b/application/models/TemplateConfiguration.php index fa20634ef36..ed10353636d 100644 --- a/application/models/TemplateConfiguration.php +++ b/application/models/TemplateConfiguration.php @@ -530,12 +530,6 @@ protected function getFrameworkAssetsReplacement( $sType ) $sFieldName = 'cssframework_'.$sType; $aFieldValue = (array) json_decode($this->$sFieldName); - // Full inheritance - if ($this->$sFieldName == "inherit"){ - $parentFieldValue = $this->getFieldFromParentConfiguration($sFieldName); - $aFieldValue = (array) json_decode($parentFieldValue); - } - $aReplacements = array(); if (!empty( $aFieldValue )){ $aAssetsToReplace = (array) $aFieldValue['replace'];