OK, if I had read the second line of code you posted I would have figured out what field24 was for.
Anyway, I think the problem is that strpos call doesn't do what you think it does. According to the docs, if the second parameter to strpos() is a number, then it's used as the code for a character. You could put quotes around the 314, but like I mentioned above, I think it would be better to change it to
Code:
if (is_member_of($post, 314) && $post['field24']){$donatorbar = true;
and see if that works.