fix call time per reference warning
This commit is contained in:
parent
a7ca289aae
commit
f8be609e44
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue