FormServerTemplates
Style Library
SiteCollectionImages
Pages
I got few default sharepoint libraries where and "library settings" click i got exception:
System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.ApplicationPages.ListEditPage.OnLoad(EventArgs e) at ASP._layouts_listedit_aspx.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
All my investigations shows that this problem because DocumentTemplateUrl is null!
this.strDocTemplateURL = "";
if (this.iBaseType == SPBaseType.DocumentLibrary)
{
this.strDocTemplateURL = ((SPDocumentLibrary) this.spList).DocumentTemplateUrl;
this.DocumentLibraryGeneralLinks.Visible = true;
}
if (this.strDocTemplateURL.Length != 0)
But one very important note that this bug appears only with custom masterpage!
Default v4 masterpage working without any problems.
Any ideas what can cause a problem there?