Quote:
Originally Posted by DannyV
In the admin panel, I have the option "All registered users can view/edit/delete their own form results saved to database."set to "Yes".
However when somebody tries to delete one of his own entries, he gets permission denied.
|
Replying to a very old question, but I had the same one and spotted the problem. It appears there is a bug and you need to find this line in forms.php:
if (($candeleteformresult && !is_member_of($vbulletin->userinfo, $candeleteformresult)) AND (!$canmanageownformresults OR $vbulletin->userinfo['userid']))
The very last part of that line should read, "OR !$vbulletin->userinfo['userid']))" (without the quotes). Note the addition of the exclamation mark. That's the only change.
Quote:
Originally Posted by DannyV
2 other questions:
Can I display the delete button also on the form results table?
Is it possible te remove some of the links on top of the results page. So when somebody is watching the form results, there is no link to the tables,poll page, etc
|
I suspect we are using the product in a similar way. I also came up with template edits to do this, but given how your question is a few years old I doubt you're still interested. I only posted the above because it was a genuine bug and if there is ever a new release the fix should be included.