diff --git a/includes/User.php b/includes/User.php index 18041276796..ea2c2f36b78 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; }