From b84c3a17d03dc1bfa95ec4ffce36adeaf2f93801 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 18 Jan 2009 05:17:02 +0000 Subject: [PATCH] No need to send autopatrols to udp --- includes/PatrolLog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/PatrolLog.php b/includes/PatrolLog.php index b96c70361b..f260369da6 100644 --- a/includes/PatrolLog.php +++ b/includes/PatrolLog.php @@ -22,7 +22,7 @@ class PatrolLog { } $title = Title::makeTitleSafe( $rc->getAttribute( 'rc_namespace' ), $rc->getAttribute( 'rc_title' ) ); if( is_object( $title ) ) { - $params = self::buildParams( $rc, $auto ); + $params = self::buildParams( $rc, $auto, $auto ? "skipUDP" : "UDP" ); $log = new LogPage( 'patrol', false ); # False suppresses RC entries $log->addEntry( 'patrol', $title, '', $params ); return true; -- 2.20.1