From: Aaron Schulz Date: Tue, 30 Sep 2008 13:31:48 +0000 (+0000) Subject: Don't assume edits are bot edits just because there is no 'bot=' url param... X-Git-Tag: 1.31.0-rc.0~44991 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=7e89f520eb88df1568a83d71fa52005cc2f96d01;p=lhc%2Fweb%2Fwiklou.git Don't assume edits are bot edits just because there is no 'bot=' url param... --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 274ee5eabf..fa801fb7c3 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -491,7 +491,7 @@ class RecentChange 'rc_comment' => $logComment, 'rc_this_oldid' => 0, 'rc_last_oldid' => 0, - 'rc_bot' => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot' , true ) : 0, + 'rc_bot' => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot' ) : 0, 'rc_moved_to_ns' => 0, 'rc_moved_to_title' => '', 'rc_ip' => $ip,