X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FfindOrphanedFiles.php;h=e81e1971ec48b6c2e9206d20112a7cb0d915f577;hb=04cea76cbbd1c66ddfa2a674cf383ffb497234ae;hp=522bbc253944b64332834ca5979800494327e525;hpb=57fb649603a94ea8244c50be0070d3074ca14d6e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/findOrphanedFiles.php b/maintenance/findOrphanedFiles.php index 522bbc2539..e81e1971ec 100644 --- a/maintenance/findOrphanedFiles.php +++ b/maintenance/findOrphanedFiles.php @@ -117,7 +117,7 @@ class FindOrphanedFiles extends Maintenance { $oiWheres ? $dbr->makeList( $oiWheres, LIST_OR ) : '1=0' ) ], - true // UNION ALL (performance) + $dbr::UNION_ALL ), __METHOD__ ); @@ -151,5 +151,5 @@ class FindOrphanedFiles extends Maintenance { } } -$maintClass = 'FindOrphanedFiles'; +$maintClass = FindOrphanedFiles::class; require_once RUN_MAINTENANCE_IF_MAIN;