Index: trunk/phase3/maintenance/fuzz-tester.php |
— | — | @@ -454,8 +454,9 @@ |
455 | 455 | "|", // hex version. |
456 | 456 | "ü", // malformed hex variant, MSB not zero. |
457 | 457 | |
458 | | - // a "lignature" - http://www.robinlionheart.com/stds/html4/spchars#ligature |
459 | | - "‌" |
| 458 | + // a "lignature" - http://www.robinlionheart.com/stds/html4/spchars#ligature |
| 459 | + // ‌ == ‌ |
| 460 | + "‌" |
460 | 461 | ); |
461 | 462 | |
462 | 463 | // Defines various wiki-related bits of syntax, that can potentially cause |
Index: trunk/extensions/QPoll/qp_results.php |
— | — | @@ -402,7 +402,8 @@ |
403 | 403 | } else { |
404 | 404 | $row = $qdata->Percents[ $propkey ]; |
405 | 405 | foreach ( $row as $catkey => &$cell ) { |
406 | | - $formatted_cell = str_replace( " ", " ", sprintf( '%3d%%', intval( round( 100 * $cell ) ) ) ); |
| 406 | + # Replace spaces with en spaces |
| 407 | + $formatted_cell = str_replace( " ", " ", sprintf( '%3d%%', intval( round( 100 * $cell ) ) ) ); |
407 | 408 | # only percents !=0 are displayed as link |
408 | 409 | if ( $cell == 0.0 && $qdata->question_id !==null ) { |
409 | 410 | $cell = array( 0=> $formatted_cell, "style"=>"color:gray" ); |
— | — | @@ -927,4 +928,4 @@ |
928 | 929 | } |
929 | 930 | } |
930 | 931 | |
931 | | -} |
\ No newline at end of file |
| 932 | +} |