﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
      <xsl:variable name="PortalItemID" select="AjaxRequest/Params/PortalItemID"></xsl:variable>
      <xsl:variable name="ErrorLog" select="AjaxRequest/ErrorLogXML/ErrorLog/ErrorLog"></xsl:variable>
      
      
      <table class="tableMaster" cellpadding="0" cellspacing="0">
        <tr>
          <td>
            <span class="packageTitle">              
              <xsl:value-of select="$ErrorLog"/>
            </span>
          </td>
        </tr>
      </table>
    </xsl:template>
</xsl:stylesheet>
