From: Reedy Date: Fri, 1 Apr 2016 21:12:00 +0000 (+0100) Subject: Collapse superfluous isset() call X-Git-Tag: 1.31.0-rc.0~7429^2 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=d131b70ef867da202620072570048c8beecad62f;p=lhc%2Fweb%2Fwiklou.git Collapse superfluous isset() call Change-Id: I525f5ce4553f67eb4a5ceea2b622dbdb034c88e1 --- diff --git a/includes/Setup.php b/includes/Setup.php index f9150548a3..81a120b7b8 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -119,8 +119,7 @@ if ( $wgRightsIcon ) { ); } -if ( isset( $wgFooterIcons['copyright'] ) - && isset( $wgFooterIcons['copyright']['copyright'] ) +if ( isset( $wgFooterIcons['copyright']['copyright'] ) && $wgFooterIcons['copyright']['copyright'] === [] ) { if ( $wgRightsIcon || $wgRightsText ) {