From: Siebrand Mazeland Date: Thu, 1 Sep 2011 14:40:56 +0000 (+0000) Subject: Add some full message keys as they originate from these locations. X-Git-Tag: 1.31.0-rc.0~27972 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=6a0ac807a4ebe2828e4e180f1689f6c5efaf35ac;p=lhc%2Fweb%2Fwiklou.git Add some full message keys as they originate from these locations. --- 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'; }