From f5dfb066ba48fa956e7137dcc5c530f43bfbe7c9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 2 Apr 2006 03:57:33 +0000 Subject: [PATCH] Live fix: code typo in lag checks --- includes/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Database.php b/includes/Database.php index 138792dac8..57e68ea884 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -1620,7 +1620,7 @@ class Database { if ( $row->User == 'system user' ) { if ( ++$slaveThreads == 2 ) { # This is it, return the time (except -ve) - if ( $row->Time > 1>>31 ) { + if ( $row->Time > 1<<31 ) { return 0; } else { return $row->Time; -- 2.20.1