From d22eeb84410f3dcd7f37f1a94b5acceaf04d716f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89tienne=20Beaul=C3=A9?= Date: Sat, 22 Jul 2017 13:46:36 -0300 Subject: [PATCH] Show protection log on creation-protected pages This change would add the message 'titleprotectedwarning' to pages that have been protected against creation, just like how deleted pages have their log visible beforere-creation. It is visible to everyone, whether or not they are allowed to recreate the page. Bug: T171338 Change-Id: I5acf1bee9cea056b20b77fd386bc9df65033cded --- includes/page/Article.php | 2 +- languages/i18n/en.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/page/Article.php b/includes/page/Article.php index d13fb3c11e..932c6bc0a6 100644 --- a/includes/page/Article.php +++ b/includes/page/Article.php @@ -1180,7 +1180,7 @@ class Article implements Page { $key = $cache->makeKey( 'page-recent-delete', md5( $title->getPrefixedText() ) ); $loggedIn = $this->getContext()->getUser()->isLoggedIn(); if ( $loggedIn || $cache->get( $key ) ) { - $logTypes = [ 'delete', 'move' ]; + $logTypes = [ 'delete', 'move', 'protect' ]; $dbr = wfGetDB( DB_REPLICA ); diff --git a/languages/i18n/en.json b/languages/i18n/en.json index 929042f216..d7505511b2 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -735,8 +735,8 @@ "permissionserrorstext-withaction": "You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:", "contentmodelediterror": "You cannot edit this revision because its content model is $1, which differs from the current content model of the page $2.", "recreate-moveddeleted-warn": "Warning: You are recreating a page that was previously deleted.\n\nYou should consider whether it is appropriate to continue editing this page.\nThe deletion and move log for this page are provided here for convenience:", - "moveddeleted-notice": "This page has been deleted.\nThe deletion and move log for the page are provided below for reference.", - "moveddeleted-notice-recent": "Sorry, this page was recently deleted (within the last 24 hours).\nThe deletion and move log for the page are provided below for reference.", + "moveddeleted-notice": "This page has been deleted.\nThe deletion, protection, and move log for the page are provided below for reference.", + "moveddeleted-notice-recent": "Sorry, this page was recently deleted (within the last 24 hours).\nThe deletion, protection, and move log for the page are provided below for reference.", "log-fulllog": "View full log", "edit-hook-aborted": "Edit aborted by hook.\nIt gave no explanation.", "edit-gone-missing": "Could not update the page.\nIt appears to have been deleted.", -- 2.20.1