From: Chad Horohoe Date: Mon, 16 Jun 2008 02:39:43 +0000 (+0000) Subject: Remove useless param in RecentChange::newFromCurRow() X-Git-Tag: 1.31.0-rc.0~47002 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=84b7170d8512efc99c5c24136e53c089cc77415d;p=lhc%2Fweb%2Fwiklou.git Remove useless param in RecentChange::newFromCurRow() --- 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;