From f8be609e444f412f1debd5c7701877a9c8bad5fa Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 20 Jun 2004 23:47:57 +0000 Subject: [PATCH] fix call time per reference warning --- includes/RecentChange.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 8cce2b6f46..ed64ee213c 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -249,11 +249,11 @@ class RecentChange } /* static */ function notifyMoveToNew( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) { - RecentChange::notifyMove( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip, false ); + RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, false ); } /* static */ function notifyMoveOverRedirect( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) { - RecentChange::notifyMove( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='', true ); + RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip='', true ); } # A log entry is different to an edit in that previous revisions are -- 2.20.1