fixes backward compat issue

This commit is contained in:
Shannon
2015-07-30 15:13:39 +02:00
parent b4e496fceb
commit cf4d13da31

View File

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