alexbeletsky / elmah-mvc

Painless integration of ELMAH into ASP.NET MVC application
http://nuget.org/packages/Elmah.MVC
Apache License 2.0
266 stars 61 forks source link

Html() action missing #8

Closed brgrz closed 12 years ago

brgrz commented 12 years ago

Elmah generates links that have the ability to show the original ASP.NET error page for some errors (not for all and I do not know what makes it render those links and what doesn't), however your Elmah controller is missing this action.

It's the Html() action and it goes like this:

    public ActionResult Html() {
        return new ElmahResult("html");
    }
alexbeletsky commented 12 years ago

Thanks for info!

Would you like to send a pull request for that ? :)

brgrz commented 12 years ago

Hey Alex, it's such a small change, just copy paste it and update your sources.;)

alexbeletsky commented 12 years ago

Fixed