diff options
author | xue <> | 2005-11-11 21:03:34 +0000 |
---|---|---|
committer | xue <> | 2005-11-11 21:03:34 +0000 |
commit | cb9ad614fe9e811a1565878ffbfb37803fa30486 (patch) | |
tree | cfcd509ab0b99525744a2347d27841c2d30f54ed /framework/Web/UI/TTheme.php | |
parent | 26ede97cc6771418af76a999931ccf5f4a8705a4 (diff) |
Changed getPropertyByPath and setPropertyByPath to getSubProperty and setSubProperty, respectively.
Diffstat (limited to 'framework/Web/UI/TTheme.php')
-rw-r--r-- | framework/Web/UI/TTheme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TTheme.php b/framework/Web/UI/TTheme.php index 1e3d8fab..3d4d4e5d 100644 --- a/framework/Web/UI/TTheme.php +++ b/framework/Web/UI/TTheme.php @@ -52,7 +52,7 @@ class TTheme extends TComponent {
foreach($this->_skins[$type][$id] as $name=>$value)
{
- $control->setPropertyByPath($name,$value);
+ $control->setSubProperty($name,$value);
}
}
else
|