From: Alexia E. Smith Date: Mon, 10 Dec 2018 19:32:12 +0000 (-0600) Subject: Can't call escaped() on a string. X-Git-Tag: 1.34.0-rc.0~3287^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=d81f57dc24fed8a9bff8daa28394f28e8c0c482f;p=lhc%2Fweb%2Fwiklou.git Can't call escaped() on a string. Bug: T211442 Change-Id: Ica5b9cf380a646d9520d5307a937d1e51b7b0099 --- diff --git a/includes/MovePage.php b/includes/MovePage.php index ffe4faba40..7d27a277b4 100644 --- a/includes/MovePage.php +++ b/includes/MovePage.php @@ -433,7 +433,7 @@ class MovePage { private function moveFile( $oldTitle, $newTitle ) { $status = Status::newFatal( 'cannotdelete', - $oldTitle->getPrefixedText()->escaped() + $oldTitle->getPrefixedText() ); $file = wfLocalFile( $oldTitle );