find_one methods: include unpublished if logged-in
How can you force the find_one (or even find_all) methods to also include unpublished (ie published = 'no') entries? This should be by default if the user is 'fueliefied' in my opinion...
I tried even forcing the published = no in the where condition of find_one but to no avail... what to do?
Comments
I usually do:
If ( ! fuelified()) $where = array('published' => 'yes');
That might be is_fuelified(), I forget..