From 286a1124a6517c4df883576ca86474fce5177ac4 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Mon, 9 Jul 2007 14:21:49 +0000 Subject: [PATCH] Don't waste time queuing or checking email notifications for pages in the Special or Media namespaces --- includes/UserMailer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 4847cecd03..6e6bbf0cf4 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -240,6 +240,9 @@ class EmailNotification { global $wgEnotifUseJobQ; global $wgEnotifWatchlist, $wgShowUpdatedMarker; + if( $title->getNamespace() < 0 ) + return; + if ($wgEnotifUseJobQ) { $params = array( "editor" => $editor->getName(), -- 2.20.1