From 6a0ac807a4ebe2828e4e180f1689f6c5efaf35ac Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 1 Sep 2011 14:40:56 +0000 Subject: [PATCH] Add some full message keys as they originate from these locations. --- includes/specials/SpecialBlock.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/includes/specials/SpecialBlock.php b/includes/specials/SpecialBlock.php index ffce940afb..8bf8267e41 100644 --- a/includes/specials/SpecialBlock.php +++ b/includes/specials/SpecialBlock.php @@ -834,27 +834,33 @@ class SpecialBlock extends SpecialPage { # when blocking a user the option 'anononly' is not available/has no effect -> do not write this into log if( !$data['HardBlock'] && $type != Block::TYPE_USER ){ + // For grepping: message block-log-flags-anononly $flags[] = 'anononly'; } if( $data['CreateAccount'] ){ + // For grepping: message block-log-flags-nocreate $flags[] = 'nocreate'; } # Same as anononly, this is not displayed when blocking an IP address if( !$data['AutoBlock'] && $type != Block::TYPE_IP ){ + // For grepping: message block-log-flags-noautoblock $flags[] = 'noautoblock'; } if( $data['DisableEmail'] ){ + // For grepping: message block-log-flags-noemail $flags[] = 'noemail'; } if( $wgBlockAllowsUTEdit && $data['DisableUTEdit'] ){ + // For grepping: message block-log-flags-nousertalk $flags[] = 'nousertalk'; } if( $data['HideUser'] ){ + // For grepping: message block-log-flags-hiddenname $flags[] = 'hiddenname'; } -- 2.20.1