From c0572370c3f2c61553f8c836fbcfc17f44178b89 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 22 May 2008 01:12:51 +0000 Subject: [PATCH] Respect $wgShowUpdatedMarker --- includes/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/User.php b/includes/User.php index 1804127679..ea2c2f36b7 100644 --- a/includes/User.php +++ b/includes/User.php @@ -1966,7 +1966,7 @@ class User { * the next change of the page if it's watched etc. */ function clearNotification( &$title ) { - global $wgUser, $wgUseEnotif; + global $wgUser, $wgUseEnotif, $wgShowUpdatedMarker; # Do nothing if the database is locked to writes if( wfReadOnly() ) { @@ -1980,7 +1980,7 @@ class User { $this->setNewtalk( false ); } - if( !$wgUseEnotif ) { + if( !$wgUseEnotif && !$wgShowUpdatedMarker ) { return; } -- 2.20.1