aboutsummaryrefslogtreecommitdiffstats
path: root/includes/FileDeleteForm.php
diff options
context:
space:
mode:
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>2011-09-24 17:52:53 +0000
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>2011-09-24 17:52:53 +0000
commit85cfb003047089324342f7025dbddd656230dab8 (patch)
treef289ae9153003a14d69ce8b8cdc17a1bdc6b723b /includes/FileDeleteForm.php
parent0e52aee608efba794154a21fd0d74b2c03c1947c (diff)
downloadmediawikicore-85cfb003047089324342f7025dbddd656230dab8.tar.gz
mediawikicore-85cfb003047089324342f7025dbddd656230dab8.zip
Allow LogEventsList::showLogExtract() to get a Title object instead of having to do Title -> string -> Title conversion
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/98012
Diffstat (limited to 'includes/FileDeleteForm.php')
-rw-r--r--includes/FileDeleteForm.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/FileDeleteForm.php b/includes/FileDeleteForm.php
index e2745e2bac9e..ca195d88fc0e 100644
--- a/includes/FileDeleteForm.php
+++ b/includes/FileDeleteForm.php
@@ -236,7 +236,7 @@ class FileDeleteForm {
private function showLogEntries() {
global $wgOut;
$wgOut->addHTML( '<h2>' . htmlspecialchars( LogPage::logName( 'delete' ) ) . "</h2>\n" );
- LogEventsList::showLogExtract( $wgOut, 'delete', $this->title->getPrefixedText() );
+ LogEventsList::showLogExtract( $wgOut, 'delete', $this->title );
}
/**