Changeset 3155
- Timestamp:
- 08/19/08 23:03:38 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/utils/copix/utils/CopixThemeDescription.class.php
r3134 r3155 105 105 $this->_website = (isset ($xml->website)) ? (string)$xml->website : null; 106 106 $this->_tpl = (isset ($xml->_tpl)) ? (string)$xml->_tpl : null; 107 if (isset ($xml->image) && file_exists (_resourcePath ((string)$xml->image ))) {107 if (isset ($xml->image) && file_exists (_resourcePath ((string)$xml->image, $pId))) { 108 108 $this->_image = (string)$xml->image; 109 $this->_imageURL = _resource ((string)$xml->image );109 $this->_imageURL = _resource ((string)$xml->image, $pId); 110 110 } 111 111 $this->_name = (isset ($xml->name)) ? (string)$xml->name : null;
