jenkins-bot has submitted this change and it was merged.

Change subject: Special parsing should not be called for Special:RunQuery
......................................................................


Special parsing should not be called for Special:RunQuery

Change-Id: Ie3b780b9b74c594c4e6cbf790b68da4e0a2abff3
---
M CargoUtils.php
1 file changed, 4 insertions(+), 1 deletion(-)

Approvals:
  Yaron Koren: Checked; Looks good to me, approved
  jenkins-bot: Verified



diff --git a/CargoUtils.php b/CargoUtils.php
index 4f80014..8b6428e 100644
--- a/CargoUtils.php
+++ b/CargoUtils.php
@@ -339,7 +339,10 @@
                        // Special:RunJobs.
                        // If that's the case, do nothing - we don't need to
                        // parse the value.
-               } elseif ( ( $title != null && $title->isSpecialPage() ) ||
+               // This next clause should only be called for Cargo's special
+               // pages, not for SF's Special:RunQuery. Don't know about other
+               // special pages.
+               } elseif ( ( $title != null && $title->isSpecialPage() && 
!$wgRequest->getCheck( 'wpRunQuery' ) ) ||
                        // The 'pagevalues' action is also a Cargo special page.
                        $wgRequest->getVal( 'action' ) == 'pagevalues' ) {
                        $parserOutput = $parser->parse( $value, $title, new 
ParserOptions(), false );

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie3b780b9b74c594c4e6cbf790b68da4e0a2abff3
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Cargo
Gerrit-Branch: master
Gerrit-Owner: Yaron Koren <yaro...@gmail.com>
Gerrit-Reviewer: Yaron Koren <yaro...@gmail.com>
Gerrit-Reviewer: jenkins-bot <>

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

Reply via email to