From 5dc7742ae136bbc0e30013f5a8232491d20d6f86 Mon Sep 17 00:00:00 2001 From: River Tarnell Date: Fri, 1 Jul 2005 21:40:22 +0000 Subject: [PATCH] propagate rc_this_oldid properly --- includes/RecentChange.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 0909c99bff..2c660121ed 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -63,10 +63,10 @@ class RecentChange return $rc; } - /* static */ function newFromCurRow( $row ) + /* static */ function newFromCurRow( $row, $rc_this_oldid = 0 ) { $rc = new RecentChange; - $rc->loadFromCurRow( $row ); + $rc->loadFromCurRow( $row, $rc_this_oldid ); $rc->notificationtimestamp = false; $rc->numberofWatchingusers = false; return $rc; -- 2.20.1