Umherirrender has uploaded a new change for review.
https://gerrit.wikimedia.org/r/269766
Change subject: Fix case of Html class
......................................................................
Fix case of Html class
Gives fatal when using $wgAutoloadAttemptLowercase = false
Change-Id: I84233a939bbe082f4f77b32dcba90bfdfd038fe0
---
M src/MassActionSpecialPage.php
1 file changed, 6 insertions(+), 6 deletions(-)
git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/MassAction
refs/changes/66/269766/1
diff --git a/src/MassActionSpecialPage.php b/src/MassActionSpecialPage.php
index f2429a2..a49ff5e 100644
--- a/src/MassActionSpecialPage.php
+++ b/src/MassActionSpecialPage.php
@@ -78,7 +78,7 @@
$this->getOutput()->setPageTitle( 'Mass Action' );
$html = '';
$html .= Linker::specialLink( 'MassAction/New',
'massaction-newtask' );
- $html .= HTML::element( 'br' );
+ $html .= Html::element( 'br' );
$this->getOutput()->addHTML( $html );
$formDescriptor = array(
@@ -163,27 +163,27 @@
$this->getOutput()->setPageTitle( 'Task ' . $taskId );
$html = '';
- $html .= HTML::element(
+ $html .= Html::element(
'p',
array( 'id' => 'ma-summary' ),
'Summary: ' . $task->getSummary()
);
- $html .= HTML::element(
+ $html .= Html::element(
'p',
array( 'id' => 'ma-user' ),
'User: ' . User::newFromId( $task->getUserId()
)->getName()
);
- $html .= HTML::element(
+ $html .= Html::element(
'p',
array( 'id' => 'ma-targettype' ),
'Target Type: ' . ucfirst( $task->getTargetType() )
);
- $html .= HTML::element(
+ $html .= Html::element(
'p',
array( 'id' => 'ma-datecreated' ),
'Date Created: ' . $task->getDateCreated()
);
- $html .= HTML::element(
+ $html .= Html::element(
'p',
array( 'id' => 'ma-state' ),
'State: ' . $task->getStateString()
--
To view, visit https://gerrit.wikimedia.org/r/269766
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I84233a939bbe082f4f77b32dcba90bfdfd038fe0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/MassAction
Gerrit-Branch: master
Gerrit-Owner: Umherirrender <[email protected]>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits