Live fix: code typo in lag checks
[lhc/web/wiklou.git] / includes / Database.php
index 138792d..57e68ea 100644 (file)
@@ -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;