You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2012/09/04 20:49:34 UTC

svn commit: r1380807 - /manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs

Author: kwright
Date: Tue Sep  4 18:49:33 2012
New Revision: 1380807

URL: http://svn.apache.org/viewvc?rev=1380807&view=rev
Log:
Make it look up the list by GUID

Modified:
    manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs

Modified: manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs?rev=1380807&r1=1380806&r2=1380807&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs (original)
+++ manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Tue Sep  4 18:49:33 2012
@@ -103,7 +103,7 @@ namespace MetaCarta.SharePoint.SoapServe
                         {
 
                             oWebsiteRoot.Lists.IncludeRootFolder = true;
-                            SPList oList = oWebsiteRoot.Lists[listName];
+                            SPList oList = oWebsiteRoot.Lists[new Guid(listName)];
 
                             SPQuery listQuery = new SPQuery();
                             listQuery.QueryThrottleMode = SPQueryThrottleOption.Override;