Update timestamp in CLL preferences script to 20170101

This is how it was announced on the German Wikipedia for deployment.

Bug: T177836
Change-Id: I3ea36dc27341d50f3454564f6e00291f3c934750
This commit is contained in:
Amire80
2017-10-10 17:03:44 +03:00
parent 2685cfaea0
commit 3df02cf213

View File

@@ -38,7 +38,7 @@ class ULSCompactLinksDisablePref extends Maintenance {
$tables = [ 'revision', 'user_properties', 'user_groups' ]; $tables = [ 'revision', 'user_properties', 'user_groups' ];
$fields = [ 'rev_user', 'isbot' => 'ug_group', 'hasbeta' => 'up_value' ]; $fields = [ 'rev_user', 'isbot' => 'ug_group', 'hasbeta' => 'up_value' ];
$conds = [ $conds = [
'rev_timestamp > ' . $dbr->timestamp( 20161001000000 ), 'rev_timestamp > ' . $dbr->timestamp( 20170101000000 ),
"rev_user > $lastUserId" "rev_user > $lastUserId"
]; ];
$options = [ $options = [