I have created a Content Type Event with 3 CCK fields: begin date/time, end date/time, and description. I also created a View to display the events in a table form. Everything works fine in the Preview when I creates the View.
User A creates Record 1
User B creates Record 2
User admin creates Record 3
When User A displays the View, it shows:
Record 1
Record 1
Record 2
Record 3
When User B displays the View, it shows:
Record 1
Record 2
Record 2
Record 3
When admin displays the View, it shows:
Record 1
Record 2
Record 3
If I give User A permission to administer Views, then when User A displays the View, it shows:
Record 1
Record 2
Record 3
Comments
Comment #1
dawehnerYou have to provide more informations
a) export the view
b) do you have some node access modules
c) did you updated to drupal 6.16
You should never give normal users "administer views" rights.
Comment #2
kcpau commenteda) Please see below:
and the SQL
b) I am using the nodeaccess module.
c) I am using Drupal 6.14.
I have no intention of giving normal user "administer views" right. I just discovered that while I was trying to figure out why I got duplicates as a regular user but not as admin.
Thank you very much for your help.
Comment #3
dawehnerBang! Here is the problem :)
Update to 6.16 and the problem will hopefully be blown away. There is a long long issue on drupal.org where this was fixed for 6.16.
Comment #4
kcpau commentedThat fixed it. Thank you very much.