Quote:
Originally Posted by hobbes747
The icon was showing up for every member that had a birthday in the current month on both RC1 and RC2 for me.
Had to change
Code:
$this->post['hasbday'] = ($birthday[0] == $this->cache['month']) AND ($birthday[1] == $this->cache['day']);
to
Code:
$this->post['hasbday'] = ($birthday[0] == $this->cache['month']) && ($birthday[1] == $this->cache['day']);
Otherwise it's working in RC2. Thanks!
|
This fixed it for me too, I had the exact same problem.