Matthias Mullie has uploaded a new change for review.

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

Change subject: Fix variable capitalization
......................................................................

Fix variable capitalization

Change-Id: I590e229f8a3362a271ad7055ecc9e62e0cf41a5a
---
M includes/Parsoid/Utils.php
1 file changed, 2 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow 
refs/changes/12/236012/1

diff --git a/includes/Parsoid/Utils.php b/includes/Parsoid/Utils.php
index 182cf4e..247d21d 100644
--- a/includes/Parsoid/Utils.php
+++ b/includes/Parsoid/Utils.php
@@ -40,7 +40,6 @@
                        // If we have no parsoid config, fallback to the parser.
                        return self::parser( $from, $to, $content, $title );
                }
-
        }
 
        /**
@@ -110,7 +109,7 @@
                        if ( $response['error'] !== '' ) {
                                $statusMsg = $response['error'];
                        } else {
-                               $statusMSg = $response['code'];
+                               $statusMsg = $response['code'];
                        }
                        $msg = "Failed contacting Parsoid for title 
\"$prefixedDbTitle\": $statusMsg";
                        wfDebugLog( 'Flow', __METHOD__ . ": $msg" );
@@ -198,7 +197,7 @@
         * For backwards compatibility, $wgFlowParsoid* variables are used
         * to specify a Parsoid configuration as a fall back.
         *
-        * @return VirtualRESTService the VirtualRESTService object to use
+        * @return \VirtualRESTService the VirtualRESTService object to use
         * @throws NoParsoidException When parsoid is unconfigured
         */
        private static function getVRSObject() {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I590e229f8a3362a271ad7055ecc9e62e0cf41a5a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Flow
Gerrit-Branch: master
Gerrit-Owner: Matthias Mullie <mmul...@wikimedia.org>

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

Reply via email to