Index: /trunk/eCard/eCardMVC/Platnosci/Web.config
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Web.config (revision 954)
+++ /trunk/eCard/eCardMVC/Platnosci/Web.config (revision 964)
@@ -122,4 +122,6 @@
         </customErrors>
     -->
+    <customErrors mode="RemoteOnly" defaultRedirect="~/en/home/error">
+    </customErrors>
 		<pages>
 			<controls>
Index: /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Error.aspx
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Error.aspx (revision 866)
+++ /trunk/eCard/eCardMVC/Platnosci/Views/Shared/Error.aspx (revision 964)
@@ -1,6 +1,6 @@
-﻿<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>
+﻿<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HandleErrorInfo>" %>
 
 <asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server">
-    Error
+    platnosci.admoto.pl - Sorry, an error occurred while processing your request
 </asp:Content>
 
@@ -9,3 +9,6 @@
         Sorry, an error occurred while processing your request.
     </h2>
+    <h3>
+        Our webmaster has been informed about this issue.
+    </h3>
 </asp:Content>
Index: /trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs
===================================================================
--- /trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs (revision 930)
+++ /trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs (revision 964)
@@ -1,3 +1,4 @@
-﻿using System.Web.Mvc;
+﻿using System;
+using System.Web.Mvc;
 
 namespace Platnosci.Controllers
@@ -9,5 +10,4 @@
         {
             return RedirectToAction("LogOn", "Account");
-            //return View();
         }
 
@@ -16,4 +16,9 @@
             return View();
         }
+
+        public ActionResult Error()
+        {
+            return View("Error");
+        }
     }
 }
