Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -37,11 +37,11 @@ |
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
41 | | - public function doUpdates( $doUser = false ) { |
| 41 | + public function doUpdates() { |
42 | 42 | global $IP, $wgVersion; |
43 | 43 | require_once( "$IP/maintenance/updaters.inc" ); |
44 | 44 | $this->updates = array_merge( $this->getCoreUpdateList(), |
45 | | - $this->getOldGlobalUpdates( $doUser ) ); |
| 45 | + $this->getOldGlobalUpdates() ); |
46 | 46 | foreach ( $this->updates as $params ) { |
47 | 47 | $func = array_shift( $params ); |
48 | 48 | call_user_func_array( $func, $params ); |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | * version these like we do with our core updates, so they have to go |
83 | 83 | * in 'always' |
84 | 84 | */ |
85 | | - private function getOldGlobalUpdates( $douser ) { |
| 85 | + private function getOldGlobalUpdates() { |
86 | 86 | global $wgUpdates, $wgExtNewFields, $wgExtNewTables, |
87 | 87 | $wgExtModifiedFields, $wgExtNewIndexes, $wgSharedDB, $wgSharedTables; |
88 | 88 | |