Added missing argument (#8069)

Fixes #7780
This commit is contained in:
Christopher Govender - Kubiec
2018-06-14 20:08:03 +01:00
committed by Sébastien Ros
parent 0d9ab3af49
commit b683eaaef0

View File

@@ -48,7 +48,7 @@ namespace Orchard.DynamicForms.Controllers {
if (form == null) {
Logger.Warning("The specified form \"{0}\" could not be found.", formName);
_notifier.Warning(T("The specified form \"{0}\" could not be found."));
_notifier.Warning(T("The specified form \"{0}\" could not be found.", formName));
return Redirect(urlReferrer);
}