I'm trying to allow the user to edit their own list item in Sharepoint Foundation 2010,
- Open the list that you want to configure.
- On the Settings menu, click List Settings.
- On the Customize page, in the General Settings column, click Advanced settings.
- On the List Advanced Settings page, in the Item-level Permissions section
On my particular list this setting is missing, so I opened a powershell window to do the equivalent
$web = Get-SPWeb YourSite/
$list = $web.Lists["List name"]
$list.WriteSecurity
1
$list.WriteSecurity = 2
$list.Update()
$list.WriteSecurity
1
It does not change to 2 and there is no error. There must be something about this list that makes it different, but I can't find out what it is.