From 669d29d56d51647d68f5762fa5b7115650d4f7ce Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Tue, 3 May 2011 17:21:43 +0000 Subject: [PATCH] Fixes bug #28694: Set maxlength of revisiondelete comment to 100. --- includes/specials/SpecialRevisiondelete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialRevisiondelete.php b/includes/specials/SpecialRevisiondelete.php index 14b568ce1f..21730a58d2 100644 --- a/includes/specials/SpecialRevisiondelete.php +++ b/includes/specials/SpecialRevisiondelete.php @@ -404,7 +404,7 @@ class SpecialRevisionDelete extends UnlistedSpecialPage { Xml::label( wfMsg( 'revdelete-otherreason' ), 'wpReason' ) . '' . '' . - Xml::input( 'wpReason', 60, $this->otherReason, array( 'id' => 'wpReason' ) ) . + Xml::input( 'wpReason', 60, $this->otherReason, array( 'id' => 'wpReason', 'maxlength' => 100 ) ) . '' . "\n" . '' . -- 2.20.1