Index: trunk/phase3/includes/installer/CoreInstaller.php |
— | — | @@ -232,6 +232,8 @@ |
233 | 233 | /** |
234 | 234 | * Register tag hook below. |
235 | 235 | * |
| 236 | + * @todo Move this to WebInstaller with the two things below? |
| 237 | + * |
236 | 238 | * @param $parser Parser |
237 | 239 | */ |
238 | 240 | public function registerDocLink( Parser &$parser ) { |
— | — | @@ -288,7 +290,7 @@ |
289 | 291 | * |
290 | 292 | * @return Status |
291 | 293 | */ |
292 | | - public function installExtensions() { |
| 294 | + protected function installExtensions() { |
293 | 295 | $exts = $this->getVar( '_Extensions' ); |
294 | 296 | $path = $this->getVar( 'IP' ) . '/extensions'; |
295 | 297 | |
— | — | @@ -305,7 +307,7 @@ |
306 | 308 | * |
307 | 309 | * @return array |
308 | 310 | */ |
309 | | - public function getInstallSteps() { |
| 311 | + protected function getInstallSteps() { |
310 | 312 | if( $this->getVar( '_UpgradeDone' ) ) { |
311 | 313 | $this->installSteps = array( 'localsettings' ); |
312 | 314 | } |
— | — | @@ -369,7 +371,7 @@ |
370 | 372 | * |
371 | 373 | * @return Status |
372 | 374 | */ |
373 | | - public function installSecretKey() { |
| 375 | + protected function installSecretKey() { |
374 | 376 | if ( wfIsWindows() ) { |
375 | 377 | $file = null; |
376 | 378 | } else { |
— | — | @@ -403,7 +405,7 @@ |
404 | 406 | * |
405 | 407 | * @return Status |
406 | 408 | */ |
407 | | - public function installSysop() { |
| 409 | + protected function installSysop() { |
408 | 410 | $name = $this->getVar( '_AdminName' ); |
409 | 411 | $user = User::newFromName( $name ); |
410 | 412 | |