From 454629b34281f293157cf986a7d33026fd3149d9 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Tue, 11 Jul 2006 15:09:51 +0000 Subject: [PATCH] * Free the result --- includes/SpecialStatistics.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/SpecialStatistics.php b/includes/SpecialStatistics.php index a6a975a351..42ba7a0f8f 100644 --- a/includes/SpecialStatistics.php +++ b/includes/SpecialStatistics.php @@ -94,6 +94,7 @@ function wfSpecialStatistics() { $wgOut->addHtml( '
  • ' . $link . ' [' . $wgLang->formatNum( $row->page_counter ) . ']
  • ' ); } $wgOut->addHtml( '' ); + $dbr->freeResult( $res ); } } -- 2.20.1