From 4dc1f7cce6fa1759a99566698265c3a025fa1f13 Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Thu, 29 Jan 2004 03:00:20 +0000 Subject: [PATCH] potentially uninitialized variable fixed --- includes/SpecialRecentchanges.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index fcd784c1f4..abd7d45c3d 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -93,6 +93,7 @@ function wfSpecialRecentchanges( $par ) "ORDER BY rc_timestamp DESC LIMIT {$limit}"; $res = wfQuery( $sql2, DB_READ, $fname ); + $rows = array(); while( $row = wfFetchObject( $res ) ){ $rows[] = $row; } -- 2.20.1