Aashaka has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/267456

Change subject: Pass IContextSource as parameter in function call to 
formatSummaryRow
......................................................................

Pass IContextSource as parameter in function call to formatSummaryRow

Passes IContextSource as parameter to ChangeTags::formatSummaryRow
function call in SpecialUndeleteWithVideoSupport::formatRevisionRow.

Change-Id: Ifd1dcce950e660aaa21b443a18d1d33ea764a494
Depends-On: Ib54a6a96b73f6cd8fcdf8e520db2448a1e811cfa
---
M SpecialUndeleteWithVideoSupport.php
1 file changed, 5 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Video 
refs/changes/56/267456/1

diff --git a/SpecialUndeleteWithVideoSupport.php 
b/SpecialUndeleteWithVideoSupport.php
index 4ab336a..010e104 100644
--- a/SpecialUndeleteWithVideoSupport.php
+++ b/SpecialUndeleteWithVideoSupport.php
@@ -537,7 +537,11 @@
 
                // Tags
                $attribs = array();
-               list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow( 
$row->ts_tags, 'deletedhistory' );
+               list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
+                       $row->ts_tags,
+                       'deletedhistory',
+                       $this->getContext()
+               );
                if ( $classes ) {
                        $attribs['class'] = implode( ' ', $classes );
                }

-- 
To view, visit https://gerrit.wikimedia.org/r/267456
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifd1dcce950e660aaa21b443a18d1d33ea764a494
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Video
Gerrit-Branch: master
Gerrit-Owner: Aashaka <aashak...@gmail.com>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to