From 2e263e8a324b2a729026460a0516697257d8edc1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 10 Dec 2008 22:31:32 +0000 Subject: [PATCH] Follow-up to r44245, r44250 (comment field on Special:Import) Label now clickable for comment field on the transwiki form as well as the upload form; gave them both distinctive IDs. --- includes/specials/SpecialImport.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/includes/specials/SpecialImport.php b/includes/specials/SpecialImport.php index c60205c784..9c158fe603 100644 --- a/includes/specials/SpecialImport.php +++ b/includes/specials/SpecialImport.php @@ -150,10 +150,11 @@ class SpecialImport extends SpecialPage { " . - Xml::label( wfMsg( 'import-comment' ), 'log-comment' ) . + Xml::label( wfMsg( 'import-comment' ), 'mw-import-comment' ) . " " . - Xml::input( 'log-comment', 50, '', array( 'id' => 'log-comment', 'type' => 'text' ) ) . ' ' . + Xml::input( 'log-comment', 50, '', + array( 'id' => 'mw-import-comment', 'type' => 'text' ) ) . ' ' . " @@ -216,10 +217,11 @@ class SpecialImport extends SpecialPage { " . - Xml::label( wfMsg( 'import-comment' ), 'comment' ) . + Xml::label( wfMsg( 'import-comment' ), 'mw-interwiki-comment' ) . " " . - Xml::input( 'log-comment', 50, '', array( 'type' => 'text' ) ) . ' ' . + Xml::input( 'log-comment', 50, '', + array( 'id' => 'mw-interwiki-comment', 'type' => 'text' ) ) . ' ' . " -- 2.20.1