diff options
Diffstat (limited to 'maintenance/TableCleanup.php')
-rw-r--r-- | maintenance/TableCleanup.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/maintenance/TableCleanup.php b/maintenance/TableCleanup.php index eec1058c6129..53bc915c9e14 100644 --- a/maintenance/TableCleanup.php +++ b/maintenance/TableCleanup.php @@ -153,6 +153,7 @@ class TableCleanup extends Maintenance { // of the string. $nextCond = ''; foreach ( array_reverse( $index ) as $field ) { + // @phan-suppress-next-line PhanPossiblyUndeclaredVariable $res has at at least one item $encValue = $dbr->addQuotes( $row->$field ); if ( $nextCond === '' ) { $nextCond = "$field > $encValue"; |