diff options
| -rw-r--r-- | HISTORY | 1 | ||||
| -rw-r--r-- | framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php | 14 | 
2 files changed, 15 insertions, 0 deletions
| @@ -2,6 +2,7 @@ Version 3.1.6 to be released  BUG: Issue#98 - Missing file in quickstart demo (Chrisotphe)  BUG: Issue#117 - Consider TValidationSummary.DisplayMode="HeaderOnly" if TValidationSummary.ShowMessageBox is set (Yves)  BUG: Issue#164 - CultureInfo::validCulture should be declared as a static method (Christophe) +BUG: Issue#168 - TSqlMapXmlConfiguration: CacheModel properties are not set (Yves)  ENH: Issue#175 - TBulletedList: Introduce TBulletStyle::None (Yves)  ENH: TAssetManager: introduce protected property "Published" to allow subclasses access (Yves) diff --git a/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php b/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php index 462b356f..f6e0acd5 100644 --- a/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php +++ b/framework/Data/SqlMap/Configuration/TSqlMapXmlConfiguration.php @@ -712,6 +712,20 @@ class TSqlMapXmlMappingConfiguration extends TSqlMapXmlConfigBuilder  		}
  		$cache = Prado::createComponent($cacheModel->getImplementationClass());
  		$this->setObjectPropFromNode($cache,$node,$properties);
 +
 +		foreach($node->xpath('property') as $propertyNode)
 +		{
 +			$name = $propertyNode->attributes()->name;
 +			if($name===null || $name==='') continue;
 +
 +			$value = $propertyNode->attributes()->value;
 +			if($value===null || $value==='') continue;
 +
 +			if( !TPropertyAccess::has($cache, $name) ) continue;
 +
 +			TPropertyAccess::set($cache, $name, $value);
 +		}
 +
  		$this->loadFlushInterval($cacheModel,$node);
  		$cacheModel->initialize($cache);
 | 
