diff options
Diffstat (limited to '')
-rw-r--r-- | include/feedcreator.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/feedcreator.class.php b/include/feedcreator.class.php index 2b23e9472..5138eb30e 100644 --- a/include/feedcreator.class.php +++ b/include/feedcreator.class.php @@ -391,7 +391,7 @@ class UniversalFeedCreator extends FeedCreator { $vars = get_object_vars($this); foreach ($vars as $key => $value) { // prevent overwriting of properties "contentType", "encoding"; do not copy "_feed" itself - if (!in_array($key, array("_feed", "contentType", "encoding"))) { + if (!in_array($key, array("_feed", "contentType"/*PWG, "encoding"*/))) { $this->_feed->{$key} = $this->{$key}; } } |