Don't use isset to check for null
[lhc/web/wiklou.git] / includes / Skin.php
index 177e2b1..14cd7af 100644 (file)
@@ -875,7 +875,7 @@ abstract class Skin extends ContextSource {
 
                $out = '';
 
-               if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
+               if ( $wgCopyrightIcon ) {
                        $out = $wgCopyrightIcon;
                } elseif ( $wgRightsIcon ) {
                        $icon = htmlspecialchars( $wgRightsIcon );