aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/storage/moveToExternal.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/storage/moveToExternal.php')
-rw-r--r--maintenance/storage/moveToExternal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/storage/moveToExternal.php b/maintenance/storage/moveToExternal.php
index 9bb554c64c81..639ef5846fc4 100644
--- a/maintenance/storage/moveToExternal.php
+++ b/maintenance/storage/moveToExternal.php
@@ -43,7 +43,7 @@ if ( !defined( 'MEDIAWIKI' ) ) {
} else {
$maxID = $dbw->selectField( 'text', 'MAX(old_id)', '', $fname );
}
- $minID = isset( $options['s'] ) ? $options['s'] : 1;
+ $minID = $options['s'] ?? 1;
moveToExternal( $cluster, $maxID, $minID );
}