From e1428ac14dcebede894078a0acbd4ef8f012674a Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 21 Sep 2016 17:28:08 -0700 Subject: [PATCH] Make MigrateFileRepoLayout use getErrors() Change-Id: I5281c4ded9eba42eccaf5a67e809a0175fa057ce --- maintenance/migrateFileRepoLayout.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintenance/migrateFileRepoLayout.php b/maintenance/migrateFileRepoLayout.php index bd73f8b575..f771fff73d 100644 --- a/maintenance/migrateFileRepoLayout.php +++ b/maintenance/migrateFileRepoLayout.php @@ -104,7 +104,7 @@ class MigrateFileRepoLayout extends Maintenance { $status = $be->prepare( [ 'dir' => dirname( $dpath ), 'bypassReadOnly' => 1 ] ); if ( !$status->isOK() ) { - $this->error( print_r( $status->getErrorsArray(), true ) ); + $this->error( print_r( $status->getErrors(), true ) ); } $batch[] = [ 'op' => 'copy', 'overwrite' => true, @@ -137,7 +137,7 @@ class MigrateFileRepoLayout extends Maintenance { $status = $be->prepare( [ 'dir' => dirname( $dpath ), 'bypassReadOnly' => 1 ] ); if ( !$status->isOK() ) { - $this->error( print_r( $status->getErrorsArray(), true ) ); + $this->error( print_r( $status->getErrors(), true ) ); } $batch[] = [ 'op' => 'copy', 'overwrite' => true, 'src' => $spath, 'dst' => $dpath, 'img' => $ofile->getArchiveName() ]; @@ -195,7 +195,7 @@ class MigrateFileRepoLayout extends Maintenance { $status = $be->prepare( [ 'dir' => dirname( $dpath ), 'bypassReadOnly' => 1 ] ); if ( !$status->isOK() ) { - $this->error( print_r( $status->getErrorsArray(), true ) ); + $this->error( print_r( $status->getErrors(), true ) ); } $batch[] = [ 'op' => 'copy', 'src' => $spath, 'dst' => $dpath, @@ -227,7 +227,7 @@ class MigrateFileRepoLayout extends Maintenance { $status = $be->doOperations( $ops, [ 'bypassReadOnly' => 1 ] ); if ( !$status->isOK() ) { - $this->output( print_r( $status->getErrorsArray(), true ) ); + $this->output( print_r( $status->getErrors(), true ) ); } $this->output( "Batch done\n\n" ); -- 2.20.1