Fixed  Alert when you quote yourself

Doh!! I was actually in the middle of writing that line of code when a call came in, then I forgot what it was for and removed it.

It's back now ;)
 
I wish all fixes were that simple - it was just a case of taking this
PHP:
if (!isset($quotedUsers[$quotedPost['user_id']]) && $quotedPost['user_id'])
and updating it with
PHP:
if (!isset($quotedUsers[$quotedPost['user_id']]) && $quotedPost['user_id'] && $quotedPost['user_id'] != $post['user_id'])
 
Top Bottom