babgvant / elmah

Automatically exported from code.google.com/p/elmah
Apache License 2.0
0 stars 0 forks source link

Incorrect jscript filter sample #116

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The sample web.config supplied with ELMAH 1.0 or 1.1 RC contains an 
incorrect example usage of the <jscript> assertion. It reads:

Instead of:

<errorFilter>
  <test>
    <jscript>
      ...
    </jscript>
  </test>
</errorFilter>

It should read:

<errorFilter>
  <test>
    <jscript>
      <expression>...</expression>
    </jscript>
  </test>
</errorFilter>

The <expression> wrapper was missing.

Original issue reported on code.google.com by azizatif on 8 Jun 2009 at 9:03

GoogleCodeExporter commented 9 years ago
Fixed in r663.

Original comment by azizatif on 17 Aug 2009 at 8:00