Mass edit is now Series Editor.

Renamed Opps to Oops.
Fixed broken SeriesEditor.
This commit is contained in:
Mark McDowall 2012-02-23 14:31:50 -08:00
commit 0ff60bde92
15 changed files with 225 additions and 224 deletions

View file

@ -11,7 +11,7 @@ namespace NzbDrone.Web.Filters
public void OnException(ExceptionContext filterContext)
{
filterContext.Result = JsonNotificationResult.Opps(filterContext.Exception.Message);
filterContext.Result = JsonNotificationResult.Oops(filterContext.Exception.Message);
filterContext.ExceptionHandled = true;
logger.FatalException(filterContext.RequestContext.HttpContext.Request.RawUrl, filterContext.Exception);
}