From: Brion Vibber Date: Sun, 2 Apr 2006 03:57:33 +0000 (+0000) Subject: Live fix: code typo in lag checks X-Git-Tag: 1.6.0~76 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=f5dfb066ba48fa956e7137dcc5c530f43bfbe7c9;p=lhc%2Fweb%2Fwiklou.git Live fix: code typo in lag checks --- 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;