Index: trunk/extensions/ConfirmEdit/ConfirmEdit.php |
— | — | @@ -245,6 +245,10 @@ |
246 | 246 | global $wgCaptchaTriggers; |
247 | 247 | if( !empty( $wgCaptchaTriggers['edit'] ) ) { |
248 | 248 | // Check on all edits |
| 249 | + global $wgUser, $wgTitle; |
| 250 | + $this->trigger = sprintf( "edit trigger by '%s' at [[%s]]", |
| 251 | + $wgUser->getName(), |
| 252 | + $wgTitle->getPrefixedText() ); |
249 | 253 | wfDebug( "ConfirmEdit: checking all edits...\n" ); |
250 | 254 | return true; |
251 | 255 | } |