Fix sort audit parameters call

This commit is contained in:
Rasmus John Pedersen
2018-10-25 14:28:12 +02:00
committed by Sebastiaan Janssen
parent 3652a96687
commit 93aa9dfe93

View File

@@ -1994,7 +1994,7 @@ namespace Umbraco.Core.Services.Implement
if (raiseEvents && published.Any())
scope.Events.Dispatch(Published, this, new PublishEventArgs<IContent>(published, false, false), "Published");
Audit(AuditType.Sort, "Sorting content performed by user", userId, 0);
Audit(AuditType.Sort, userId, 0, "Sorting content performed by user");
return true;
}