From: Aaron Schulz Date: Thu, 18 Sep 2008 19:15:18 +0000 (+0000) Subject: title -> logtitle X-Git-Tag: 1.31.0-rc.0~45233 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=505e3d90c607ea9575dbea1ac258d25a16d81644;p=lhc%2Fweb%2Fwiklou.git title -> logtitle --- diff --git a/includes/Export.php b/includes/Export.php index c273bb0ead..827561e7e9 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -534,7 +534,7 @@ class XmlDumpWriter { $out .= " " . wfElement( 'text', array( 'deleted' => 'deleted' ) ) . "\n"; } else { $title = Title::makeTitle( $row->log_namespace, $row->log_title ); - $out .= " " . wfElementClean( 'title', null, $title->getPrefixedText() ) . "\n"; + $out .= " " . wfElementClean( 'logtitle', null, $title->getPrefixedText() ) . "\n"; $out .= " " . wfElementClean( 'params', array( 'xml:space' => 'preserve' ), strval( $row->log_params ) ) . "\n";