Index: trunk/extensions/Patroller/Patroller.class.php |
— | — | @@ -41,7 +41,6 @@ |
42 | 42 | } |
43 | 43 | |
44 | 44 | # Prune old assignments if needed |
45 | | - wfSeedRandom(); |
46 | 45 | if( 0 == mt_rand( 0, 499 ) ) |
47 | 46 | $this->pruneAssignments(); |
48 | 47 | |
Index: trunk/extensions/CheckUser/CheckUser.php |
— | — | @@ -130,7 +130,6 @@ |
131 | 131 | $dbw->insert( 'cu_changes', $rcRow, __METHOD__ ); |
132 | 132 | |
133 | 133 | # Every 100th edit, prune the checkuser changes table. |
134 | | - wfSeedRandom(); |
135 | 134 | if( 0 == mt_rand( 0, 99 ) ) { |
136 | 135 | # Periodically flush old entries from the recentchanges table. |
137 | 136 | global $wgCUDMaxAge; |
Index: trunk/extensions/ConfirmAccount/ConfirmAccount_body.php |
— | — | @@ -818,7 +818,6 @@ |
819 | 819 | } |
820 | 820 | |
821 | 821 | # Every 30th view, prune old deleted items |
822 | | - wfSeedRandom(); |
823 | 822 | if( 0 == mt_rand( 0, 29 ) ) { |
824 | 823 | $this->runAutoMaintenance(); |
825 | 824 | } |