so far as to work as it solves this problem comment the lines 734 and 738 of modules
/DynamicFields/DynamicField.php
Code:
728 function populateXTPL(&$xtpl, $view){
729 if($this->bean->hasCustomFields()){
730 $results = $this->getAllFieldsView($view, 'xtpl');
731 foreach($results as $name=>$value){
732 if(is_array($value['xtpl'])){
733 foreach($value['xtpl'] as $xName=>$xValue){
734 //$xtpl->assign(strtoupper($xName), $xValue);
735
736 }
737 }else{
738 //$xtpl->assign(strtoupper($name), $value['xtpl']);
739 }
740 }
741 }
742
743 }
Bookmarks