From 56072f6e05cde9e218b5fca09e8fd3b5e3f4a373 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 16 Apr 2006 06:41:29 +0000 Subject: [PATCH] How many bits in a byte again? --- includes/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Database.php b/includes/Database.php index 65be7389fd..a87585b327 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -1641,7 +1641,7 @@ class Database { if ( $row->User == 'system user' ) { if ( ++$slaveThreads == 2 ) { # This is it, return the time (except -ve) - if ( $row->Time > 0x7ffffff ) { + if ( $row->Time > 0x7fffffff ) { return false; } else { return $row->Time; -- 2.20.1