SECURITY: Escape internal error message
[lhc/web/wiklou.git] / maintenance / copyJobQueue.php
index e1d697d..08e40fd 100644 (file)
@@ -77,7 +77,7 @@ class CopyJobQueue extends Maintenance {
                foreach ( $jobs as $job ) {
                        ++$total;
                        $batch[] = $job;
-                       if ( count( $batch ) >= $this->mBatchSize ) {
+                       if ( count( $batch ) >= $this->getBatchSize() ) {
                                $dst->push( $batch );
                                $totalOK += count( $batch );
                                $batch = [];