Здравствуйте, вывожу галерею воттаким кодом XSL-шаблона
<xsl:template match="informationsystem_item">
<xsl:choose>
<xsl:when test="image_large != ''">
<a class="highslide polaroids" onclick="return hs.expand(this)" href="{dir}{image_large}" title="{name}"><img src="{dir}{image_small}" alt="{name}" /></a>
<div class="highslide-caption"><xsl:value-of select="name"/></div>
</xsl:when>
</xsl:choose>
</xsl:template>
но на странице и {image_large} и {image_small} выводит малое изображение. Как решать эту проблему, почему так получилось? Спасибо!