MG 1.1 RSS media revert to full image not thumbnail

optrex

Well-known member
I notice in 1.1.4 the rss was modified to the thumbnail.
How do I revert this to be the full image size?

Code:
<a href="{xen:link 'canonical:xengallery', $media}">
            <img src="{xen:helper fullurl, $media.thumbnailUrl, true}" alt="{$media.filename}" title="{$media.media_title}" width="{$xenOptions.xengalleryThumbnailDimension.width}" height="{$xenOptions.xengalleryThumbnailDimension.height}" />
        </a>

I know I need to change this section and in particular $media.thumbnailUrl and xengalleryThumbnailDimension.height and xengalleryThumbnailDimension.width but I'm not sure of what value to put there due to needing a full URL.
 
Replace this:
Code:
{xen:helper fullurl, $media.thumbnailUrl, true}

With:
Code:
{xen:link 'full:xengallery/full', $media}

This:
Code:
{$xenOptions.xengalleryThumbnailDimension.width}

With:
Code:
{$media.width}

This:
Code:
{$xenOptions.xengalleryThumbnailDimension.height}

With:
Code:
{$media.height}

That should do it.
 
Top Bottom