X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FFileDeleteForm.php;h=783de1c0c4cb6d2200e59ccd6f7c4ad6f2e8ac74;hp=8c843c4438d5afee9ef329cfbf2ab4dc91440ffd;hb=048089ae3a052deaac1003996247ce86e5a60bfc;hpb=3df3b575c6617df64ec98533cc7141bd2314e274 diff --git a/includes/FileDeleteForm.php b/includes/FileDeleteForm.php index 8c843c4438..783de1c0c4 100644 --- a/includes/FileDeleteForm.php +++ b/includes/FileDeleteForm.php @@ -246,6 +246,9 @@ class FileDeleteForm { private function showForm() { global $wgOut, $wgUser, $wgRequest; + $conf = RequestContext::getMain()->getConfig(); + $oldCommentSchema = $conf->get( 'CommentTableSchemaMigrationStage' ) === MIGRATION_OLD; + if ( $wgUser->isAllowed( 'suppressrevision' ) ) { $suppress = " @@ -258,6 +261,8 @@ class FileDeleteForm { $suppress = ''; } + $wgOut->addModules( 'mediawiki.action.delete.file' ); + $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $wgUser->isWatched( $this->title ); $form = Xml::openElement( 'form', [ 'method' => 'post', 'action' => $this->getAction(), 'id' => 'mw-img-deleteconfirm' ] ) . @@ -286,8 +291,15 @@ class FileDeleteForm { Xml::label( wfMessage( 'filedelete-otherreason' )->text(), 'wpReason' ) . " " . - Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ), - [ 'type' => 'text', 'maxlength' => '255', 'tabindex' => '2', 'id' => 'wpReason' ] ) . + Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ), [ + 'type' => 'text', + // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP + // (e.g. emojis) count for two each. This limit is overridden in JS to instead count + // Unicode codepoints (or 255 UTF-8 bytes for old schema). + 'maxlength' => $oldCommentSchema ? 255 : CommentStore::COMMENT_CHARACTER_LIMIT, + 'tabindex' => '2', + 'id' => 'wpReason' + ] ) . " {$suppress}";