Add missing place-holder {0} for Packaging error message.

This commit is contained in:
Dale Newman
2014-07-20 14:08:35 +02:00
committed by Zoltán Lehóczky
parent 2e9f9afdb9
commit ae6030214d

View File

@@ -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) {