Index: trunk/phase3/includes/MessageCache.php |
— | — | @@ -575,6 +575,16 @@ |
576 | 576 | if( $message === false ) { |
577 | 577 | return '<' . htmlspecialchars($key) . '>'; |
578 | 578 | } |
| 579 | + |
| 580 | + # Fix whitespace |
| 581 | + $message = strtr( $message, |
| 582 | + array( |
| 583 | + # Fix for trailing whitespace, removed by textarea |
| 584 | + ' ' => ' ', |
| 585 | + # Fix for NBSP, converted to space by firefox |
| 586 | + ' ' => "\xc2\xa0", |
| 587 | + ) ); |
| 588 | + |
579 | 589 | return $message; |
580 | 590 | } |
581 | 591 | |