mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-12-03 12:37:02 +00:00
92f5cfd821
This can be done within sections using CSS: * mw-notalk Or at a page level using a magic word: * __NOTALK__ "notalk" suppresses all comment detection, treating the content as not containing any comments even if there are signatures present. Bug: T295553 Bug: T249293 Change-Id: Ic1d7294bafcf7071e16838e70684ecadd7bc6fd3
9 lines
155 B
PHP
9 lines
155 B
PHP
<?php
|
|
$magicWords = [];
|
|
|
|
/** English (English) */
|
|
$magicWords['en'] = [
|
|
'archivedtalk' => [ 0, '__ARCHIVEDTALK__' ],
|
|
'notalk' => [ 0, '__NOTALK__' ],
|
|
];
|