X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Flogging%2FLogEventsList.php;h=0cf584b0a2a1f9977b702fb40472d339f1551e8d;hb=2fdcd7bfdd95a3b1515b9a94289d67eb60add484;hp=f29c9e472bd3cd47f89a008c224a506237b6f4ac;hpb=045357380dc28826436884ce39ede285f2ac3ce2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/logging/LogEventsList.php b/includes/logging/LogEventsList.php index f29c9e472b..0cf584b0a2 100644 --- a/includes/logging/LogEventsList.php +++ b/includes/logging/LogEventsList.php @@ -310,7 +310,7 @@ class LogEventsList extends ContextSource { return ''; } $html = ''; - $html .= xml::label( wfMessage( 'log-action-filter-' . $types[0] )->text(), + $html .= Xml::label( wfMessage( 'log-action-filter-' . $types[0] )->text(), 'action-filter-' .$types[0] ) . "\n"; $select = new XmlSelect( 'subtype' ); $select->addOption( wfMessage( 'log-action-filter-all' )->text(), '' ); @@ -319,7 +319,7 @@ class LogEventsList extends ContextSource { $select->addOption( wfMessage( $msgKey )->text(), $value ); } $select->setDefault( $action ); - $html .= $select->getHtml(); + $html .= $select->getHTML(); return $html; }