quote:
Originally posted by SpunkyLoveMuff
I don't see whats different... It seems to be a bug with the actual status as only 5 emails are coming up as not offline. It's ALWAYS the same ones even when I sign back in or reset PC
In Javascript, the index is zero based, it starts at 0, not at 1.
So this would be your current value:
code:
StatusImg[0] = '';
StatusImg[1] = 'Offline';
And the correct one should be:
code:
StatusImg[2] = 'Offline';
Edit: Check your debug output, that would be an easy way to fix it.