Index: trunk/phase3/includes/RecentChange.php |
— | — | @@ -197,6 +197,14 @@ |
198 | 198 | $this->mAttribs['rc_last_oldid'] ); |
199 | 199 | } |
200 | 200 | } |
| 201 | + |
| 202 | + public function notifyRC2UDP() { |
| 203 | + global $wgRC2UDPAddress, $wgRC2UDPOmitBots; |
| 204 | + # Notify external application via UDP |
| 205 | + if( $wgRC2UDPAddress && ( !$this->mAttribs['rc_bot'] || !$wgRC2UDPOmitBots ) ) { |
| 206 | + self::sendToUDP( $this->getIRCLine() ); |
| 207 | + } |
| 208 | + } |
201 | 209 | |
202 | 210 | /** |
203 | 211 | * Send some text to UDP |