X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2Fpagers%2FNewFilesPager.php;h=8bac2c4493c51a444fd1348d3e1df98745e9f71b;hb=5a68f2902d4e21bc76482c33344f473912768fec;hp=c214f1f77b17dad98c07e072f11cece8775d91ea;hpb=478a58f63101f2b47d18a618296b5e7970fa3f24;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/pagers/NewFilesPager.php b/includes/specials/pagers/NewFilesPager.php index c214f1f77b..8bac2c4493 100644 --- a/includes/specials/pagers/NewFilesPager.php +++ b/includes/specials/pagers/NewFilesPager.php @@ -40,7 +40,7 @@ class NewFilesPager extends RangeChronologicalPager { * @param IContextSource $context * @param FormOptions $opts */ - function __construct( IContextSource $context, FormOptions $opts ) { + public function __construct( IContextSource $context, FormOptions $opts ) { parent::__construct( $context ); $this->opts = $opts; @@ -113,7 +113,7 @@ class NewFilesPager extends RangeChronologicalPager { $conds['rc_patrolled'] = RecentChange::PRC_UNPATROLLED; $conds['rc_namespace'] = NS_FILE; - if ( $wgActorTableSchemaMigrationStage === MIGRATION_NEW ) { + if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW ) { $jcond = 'rc_actor = ' . $imgQuery['fields']['img_actor']; } else { $rcQuery = ActorMigration::newMigration()->getJoin( 'rc_user' ); @@ -168,7 +168,7 @@ class NewFilesPager extends RangeChronologicalPager { return 'img_timestamp'; } - function getStartBody() { + protected function getStartBody() { if ( !$this->gallery ) { // Note that null for mode is taken to mean use default. $mode = $this->getRequest()->getVal( 'gallerymode', null ); @@ -183,7 +183,7 @@ class NewFilesPager extends RangeChronologicalPager { return ''; } - function getEndBody() { + protected function getEndBody() { return $this->gallery->toHTML(); }