Index: trunk/extensions/InputBox/InputBox.classes.php |
— | — | @@ -510,7 +510,7 @@ |
511 | 511 | if ( strpos( $line, '=' ) === false ) |
512 | 512 | continue; |
513 | 513 | list( $name, $value ) = explode( '=', $line, 2 ); |
514 | | - $values[ strtolower( trim( $name ) ) ] = trim( $value ); |
| 514 | + $values[ strtolower( trim( $name ) ) ] = Sanitizer::decodeCharReferences( trim( $value ) ); |
515 | 515 | } |
516 | 516 | |
517 | 517 | // Build list of options, with local member names |