diff --git a/core/components/getfeed/snippet.getfeed.php b/core/components/getfeed/snippet.getfeed.php index f54c2eb..f726b79 100644 --- a/core/components/getfeed/snippet.getfeed.php +++ b/core/components/getfeed/snippet.getfeed.php @@ -29,6 +29,13 @@ $idx = 0; while (list($itemKey, $item) = each($rss->items)) { if ($idx >= $offset) { + foreach ($item as $k => $v) { + if (is_array($v)) { + foreach ($v as $k2 => $v2) { + $item[$k . '-' . $k2] = $v2; + } + } + } if (!empty($tpl)) { $output[] = $modx->getChunk($tpl, $item); } else {