From 84b7170d8512efc99c5c24136e53c089cc77415d Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 16 Jun 2008 02:39:43 +0000 Subject: [PATCH] Remove useless param in RecentChange::newFromCurRow() --- includes/RecentChange.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 58180bfa83..4daf6f8797 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -56,10 +56,10 @@ class RecentChange return $rc; } - public static function newFromCurRow( $row, $rc_this_oldid = 0 ) + public static function newFromCurRow( $row ) { $rc = new RecentChange; - $rc->loadFromCurRow( $row, $rc_this_oldid ); + $rc->loadFromCurRow( $row ); $rc->notificationtimestamp = false; $rc->numberofWatchingusers = false; return $rc; -- 2.20.1