From cf4d13da31612f469279a866ce00ca5595932a5d Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 30 Jul 2015 15:13:39 +0200 Subject: [PATCH] fixes backward compat issue --- .../umbraco/webservices/nodeSorter.asmx.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/webservices/nodeSorter.asmx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/webservices/nodeSorter.asmx.cs index a0aed7ccdb..1ab2346054 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/webservices/nodeSorter.asmx.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/webservices/nodeSorter.asmx.cs @@ -93,6 +93,11 @@ namespace umbraco.presentation.webservices throw new ArgumentException("User not logged in"); } + public void UpdateSortOrder(int ParentId, string SortOrder) + { + UpdateSortOrder(ParentId.ToString(), SortOrder); + } + [WebMethod] public void UpdateSortOrder(string ParentId, string SortOrder) {