mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-27 09:43:30 +00:00
856b90fa3e
This can be done within sections using CSS: * mw-archivedtalk Or at a page level using a magic word: * __ARCHIVEDTALK__ "archivedtalk" still detects the comments, but disables features as appropriate for an archived conversion, i.e. the reply tool. Bug: T295553 Bug: T249293 Change-Id: Ic47693e9a2f53f92563ccdd50203fb55c12d0493
8 lines
121 B
PHP
8 lines
121 B
PHP
<?php
|
|
$magicWords = [];
|
|
|
|
/** English (English) */
|
|
$magicWords['en'] = [
|
|
'archivedtalk' => [ 0, '__ARCHIVEDTALK__' ],
|
|
];
|