From ae6030214d4ffef01e1aea3a4410f94e2c70a78f Mon Sep 17 00:00:00 2001 From: Dale Newman Date: Sun, 20 Jul 2014 14:08:35 +0200 Subject: [PATCH] Add missing place-holder {0} for Packaging error message. --- .../Controllers/PackagingServicesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.Packaging/Controllers/PackagingServicesController.cs b/src/Orchard.Web/Modules/Orchard.Packaging/Controllers/PackagingServicesController.cs index 71bf40589..7c70e20c2 100644 --- a/src/Orchard.Web/Modules/Orchard.Packaging/Controllers/PackagingServicesController.cs +++ b/src/Orchard.Web/Modules/Orchard.Packaging/Controllers/PackagingServicesController.cs @@ -161,7 +161,7 @@ namespace Orchard.Packaging.Controllers { } } catch (OrchardException e) { - Services.Notifier.Error(T("Package uploading and installation failed: ", e.Message)); + Services.Notifier.Error(T("Package uploading and installation failed: {0}", e.Message)); return View("InstallPackageFailed"); } catch (Exception) {