From: Ævar Arnfjörð Bjarmason Date: Wed, 12 Oct 2005 08:35:58 +0000 (+0000) Subject: * Redundant parenthesis X-Git-Tag: 1.6.0~1446 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=5034a31a9d23f55122d60a40aad9cafa69dee45e;p=lhc%2Fweb%2Fwiklou.git * Redundant parenthesis --- diff --git a/includes/Skin.php b/includes/Skin.php index 7363719243..eb8a7e2d85 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1341,7 +1341,7 @@ END; 'text' => $text, 'href' => $href, 'id' => 'n-' . strtr($line[1], ' ', '-'), - 'active' => ( $pageurl == $href ) + 'active' => $pageurl == $href ); } else { continue; } }