From: Ævar Arnfjörð Bjarmason Date: Tue, 13 Sep 2005 17:33:33 +0000 (+0000) Subject: * Added a FIXME X-Git-Tag: 1.6.0~1649 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=ede771f428a48113274cc5634ed6bb2dd80fa1b7;p=lhc%2Fweb%2Fwiklou.git * Added a FIXME * code style --- diff --git a/includes/SpecialMostlinked.php b/includes/SpecialMostlinked.php index 008a2d4123..c7926380bb 100644 --- a/includes/SpecialMostlinked.php +++ b/includes/SpecialMostlinked.php @@ -14,13 +14,8 @@ require_once ( 'QueryPage.php' ) ; */ class MostlinkedPage extends QueryPage { - function getName() { - return 'Mostlinked'; - } - - function isExpensive() { - return true; - } + function getName() { return 'Mostlinked'; } + function isExpensive() { return true; } function isSyndicated() { return false; } function getSQL() { @@ -31,6 +26,7 @@ class MostlinkedPage extends QueryPage { pl_namespace AS namespace, pl_title AS title, COUNT(*) AS value, + -- FIXME: The presence of this is a bug page_namespace FROM $pagelinks LEFT JOIN $page ON pl_namespace=page_namespace AND pl_title=page_title