From: zoranzoki21 Date: Thu, 10 Jan 2019 19:26:39 +0000 (+0100) Subject: Fix Revison typo X-Git-Tag: 1.34.0-rc.0~3100 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=c3f45c864a4f316624f47a622680eb440b98dfc7 Fix Revison typo Bug: T201491 Change-Id: I4a91d64dafdafd022462730c221cdf2a113d2ef2 --- diff --git a/languages/i18n/qqq.json b/languages/i18n/qqq.json index 4052a4469f..22e72a780e 100644 --- a/languages/i18n/qqq.json +++ b/languages/i18n/qqq.json @@ -203,7 +203,8 @@ "A2093064", "BadDog", "The Discoverer", - "Bencemac" + "Bencemac", + "Zoranzoki21" ] }, "sidebar": "{{notranslate}}", @@ -1052,7 +1053,7 @@ "page_last": "This is part of the navigation message on the top and bottom of Special pages which are lists of things in alphabetical order, e.g. the '[[Special:Categories|Categories]]' special page. It is followed by the message {{msg-mw|Viewprevnext}}.\n\n{{Identical|Last}}", "histlegend": "Text in history page.\n\nSee also:\n* {{msg-mw|Cur}}\n* {{msg-mw|Last}}\n* {{msg-mw|Minoreditletter}}", "history-fieldset-title": "Fieldset label in the edit history pages.", - "history-show-deleted": "CheckBox to show only per [[mw:Manual:RevisionDelete|RevisonDelete]] deleted versions.\n\nUsed in History and [[Special:Contributions]].", + "history-show-deleted": "CheckBox to show only per [[mw:Manual:RevisionDelete|RevisionDelete]] deleted versions.\n\nUsed in History and [[Special:Contributions]].", "history_copyright": "{{notranslate}}", "histfirst": "This is part of the navigation message on the top and bottom of Page History pages which are lists of things in date order, e.g. [{{canonicalurl:Support|action=history}} Page History of Support].\n\nIt is followed by the message {{msg-mw|Viewprevnext}}.\n{{Identical|Oldest}}", "histlast": "This is part of the navigation message on the top and bottom of Page History pages which are lists of things in date order, e.g. [{{canonicalurl:Support|action=history}} Page History of Support].\n\nIt is followed by the message {{msg-mw|Viewprevnext}}.\n{{Identical|Newest}}", diff --git a/tests/phpunit/includes/page/WikiPageDbTestBase.php b/tests/phpunit/includes/page/WikiPageDbTestBase.php index f7e5bd161a..298dc52a3c 100644 --- a/tests/phpunit/includes/page/WikiPageDbTestBase.php +++ b/tests/phpunit/includes/page/WikiPageDbTestBase.php @@ -2048,7 +2048,7 @@ more stuff wfTimestamp( TS_UNIX, $initialRevision->getTimestamp() ) - 1 ); - $olderRevison = new Revision( + $olderRevision = new Revision( [ 'id' => 9989, 'page' => $page->getId(), @@ -2065,7 +2065,7 @@ more stuff ] ); - $result = $page->updateIfNewerOn( $this->db, $olderRevison ); + $result = $page->updateIfNewerOn( $this->db, $olderRevision ); $this->assertFalse( $result ); }