From f0a74d9b69b4cfc811c430af4725c2213b208f66 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 21 Apr 2005 23:19:02 +0000 Subject: [PATCH] Don't hide email notification preferences when user-to-user email is disabled --- includes/SpecialPreferences.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/includes/SpecialPreferences.php b/includes/SpecialPreferences.php index b4e91e422e..b608222ab8 100644 --- a/includes/SpecialPreferences.php +++ b/includes/SpecialPreferences.php @@ -489,13 +489,14 @@ class PreferencesForm { if( $wgEnableEmail ) { $wgOut->addHTML("
" ); - if( $wgEnableUserEmail ) { - $wgOut->addHTML( + $wgOut->addHTML( $emailauthenticated. $enotifrevealaddr. $enotifwatchlistpages. $enotifusertalkpages. - $enotifminoredits. + $enotifminoredits ); + if( $wgEnableUserEmail ) { + $wgOut->addHTML( "
" ); } } -- 2.20.1