Hey Guys,
I’m having a strange issue, that I hope is just me being dumb.
We’re using SafeCracker for a job listings channel, and in the members’ profile page, they’ll be able to see their job postings. And for the most part, it works well, but I noticed that if I logged in as one user (in a certain “user” member group), posted a job, logged out and then logged in as another user (say, Super Admin), the listings for entries the logged in user could edit were wrong and were actually for the user who posted last.
here’s a screenshot showing two different users logged in (two different browsers) and having the same entries listed: http://drp.ly/hyhH
Here’s the code I’ve got for that area of the page:
<div id="jobpostings">
<h2>My Job Postings</h2>
<ul>
{exp:channel:entries channel="jobs" author_id="CURRENT_USER"}
<li>{title} <small><a href="{entry_id_path=members/post-job}">Edit</a></small><br /></li>
{/exp:channel:entries}
</ul>
</div>
I also tried using just one browser with two different, non-Super Admin users and got the same result. In fact, I logged in with one user that didn’t have *any* entries they posted (confirmed by checking in the EE CP) but the editable entries list still showed all the same ones as in the screenshot.
Any ideas??
angie