From: Étienne Beaulé Date: Sat, 22 Jul 2017 16:46:36 +0000 (-0300) Subject: Show protection log on creation-protected pages X-Git-Tag: 1.31.0-rc.0~2446^2 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=d22eeb84410f3dcd7f37f1a94b5acceaf04d716f;p=lhc%2Fweb%2Fwiklou.git 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 --- 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.",