Fix regression from r23575 -- wl_notificationtimestamp didn't get updated anymore...
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 11 Jul 2007 19:21:34 +0000 (19:21 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 11 Jul 2007 19:21:34 +0000 (19:21 +0000)
commit8466f9561ec3b255d5b426b67a61d7ee494518e7
treeea4664abad456b7deb18e9fd93d8f6d675922811
parent114de163d829b16f931b3aa8b384ed9704a54acd
Fix regression from r23575 -- wl_notificationtimestamp didn't get updated anymore on update notification, leading to duplicate mails being sent out.
Doing a WHERE on x=NULL doesn't work; need to do 'x IS NULL' here.
Perhaps we should make the DB functions smarter to handle that case to do what we'd expect it to do (as we do turning arrays into 'IN (...)') but this'll fix it for now.
includes/UserMailer.php