https://bugzilla.wikimedia.org/show_bug.cgi?id=47010

Dima <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|encodeParameters            |encodeParameters and
                   |                            |decodeParameters

--- Comment #5 from Dima <[email protected]> ---
Another error in decodeParameters()

$wgRequest->getValues();


["named_args"]=1

must be

["named args"]=1


Resolving:

446: $result = $wgRequest->getValues();

=>

446: foreach ($wgRequest->getValues() as $key => $value) {
447:        $result[str_replace( '_', ' ', $key)] = $value;
448: }

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to