s/necesssary/necessary/
Change-Id: I38e5ff8b5b84b0d96b9bbc3e168efe416016184b
This commit is contained in:
parent
ce0f3ffea4
commit
6c62b2164c
2 changed files with 2 additions and 2 deletions
|
|
@ -334,7 +334,7 @@ class ApiQueryUserContribs extends ApiQueryBase {
|
|||
$revQuery['joins']['revision'] = $revQuery['joins']['temp_rev_user'];
|
||||
unset( $revQuery['joins']['temp_rev_user'] );
|
||||
$this->addOption( 'STRAIGHT_JOIN' );
|
||||
// It isn't actually necesssary to reorder $revQuery['tables'] as Database does the right thing
|
||||
// It isn't actually necessary to reorder $revQuery['tables'] as Database does the right thing
|
||||
// when join conditions are given for all joins, but Gergő is wary of relying on that so pull
|
||||
// `revision_actor_temp` to the start.
|
||||
$revQuery['tables'] =
|
||||
|
|
|
|||
2
includes/cache/MessageCache.php
vendored
2
includes/cache/MessageCache.php
vendored
|
|
@ -540,7 +540,7 @@ class MessageCache implements LoggerAwareInterface {
|
|||
// `revision` first rather than `page`).
|
||||
$revQuery['joins']['revision'] = $revQuery['joins']['page'];
|
||||
unset( $revQuery['joins']['page'] );
|
||||
// It isn't actually necesssary to reorder $revQuery['tables'] as Database does the right thing
|
||||
// It isn't actually necessary to reorder $revQuery['tables'] as Database does the right thing
|
||||
// when join conditions are given for all joins, but Gergő is wary of relying on that so pull
|
||||
// `page` to the start.
|
||||
$revQuery['tables'] = array_merge(
|
||||
|
|
|
|||
Loading…
Reference in a new issue