Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -524,7 +524,7 @@ |
525 | 525 | "Populating log_user_text field, printing progress markers. For large\n" . |
526 | 526 | "databases, you may want to hit Ctrl-C and do this manually with\n" . |
527 | 527 | "maintenance/populateLogUsertext.php.\n" ); |
528 | | - $task = new PopulateLogUsertext(); |
| 528 | + $task = $this->maintenance->runChild( 'PopulateLogUsertext' ); |
529 | 529 | $task->execute(); |
530 | 530 | $this->output( "Done populating log_user_text field.\n" ); |
531 | 531 | } |
— | — | @@ -539,7 +539,7 @@ |
540 | 540 | "Populating log_search table, printing progress markers. For large\n" . |
541 | 541 | "databases, you may want to hit Ctrl-C and do this manually with\n" . |
542 | 542 | "maintenance/populateLogSearch.php.\n" ); |
543 | | - $task = new PopulateLogSearch(); |
| 543 | + $task = $this->maintenance->runChild( 'PopulateLogSearch' ); |
544 | 544 | $task->execute(); |
545 | 545 | $this->output( "Done populating log_search table.\n" ); |
546 | 546 | } |
— | — | @@ -567,7 +567,7 @@ |
568 | 568 | return; |
569 | 569 | } |
570 | 570 | |
571 | | - $task = new UpdateCollation(); |
| 571 | + $task = $this->maintenance->runChild( 'UpdateCollation' ); |
572 | 572 | $task->execute(); |
573 | 573 | } |
574 | 574 | } |