On Mon, Apr 14, 2008 at 9:37 PM, werdna@svn.wikimedia.org wrote:
Log Message:
Fix up GlobalBlocking::purgeExpired()
$dbw->delete( 'globalblocks', 'gb_expiry<'.$dbw->addQuotes($dbw->timestamp()), __METHOD__ );
$dbw->delete( 'globalblocks', array('gb_expiry<'.$dbw->addQuotes($dbw->timestamp())), __METHOD__ );
What's the difference? These do the same thing, don't they?