okay...
i've got an if statement:
if(access_level(current_user()) > 0 ||
current_user() == $row["author"])
{
blah
}
the first part of the if statement evaluates how I expect it to and should be fairly self explanatory.
The next part (current_user() == $row["author"])
seems to evaluate to true even when currentuser() is 0 and $row["author"] is not zero... Am i overlooking something?