Index: trunk/extensions/SphinxSearch/SphinxSearch_body.php |
— | — | @@ -442,7 +442,7 @@ |
443 | 443 | if ( is_array( $res["words"] ) ) { |
444 | 444 | $warn = false; |
445 | 445 | foreach ( $res["words"] as $word => $info ) { |
446 | | - $wgOut->addWikiText( '* ' . |
| 446 | + $wgOut->addWikiText( |
447 | 447 | wfMsg( 'sphinxSearchStats', $word, $info['hits'], $info['docs'] ) |
448 | 448 | ); |
449 | 449 | if ( ( $info['docs'] < $wgSphinxSearch_maxmatches ) && ( $info['docs'] > $res['total'] ) ) { |
— | — | @@ -450,7 +450,7 @@ |
451 | 451 | } |
452 | 452 | } |
453 | 453 | if ( $warn ) { |
454 | | - $wgOut->addWikiText( "''" . wfMsg( 'sphinxSearchStatsInfo' ) . "''" ); |
| 454 | + $wgOut->addWikiText( wfMsg( 'sphinxSearchStatsInfo' ) ); |
455 | 455 | } else { |
456 | 456 | $wgOut->addWikiText( "\n" ); |
457 | 457 | } |
Index: trunk/extensions/SphinxSearch/SphinxSearch.i18n.php |
— | — | @@ -13,8 +13,8 @@ |
14 | 14 | 'sphinxPreviousPage' => 'Previous', |
15 | 15 | 'sphinxNextPage' => 'Next', |
16 | 16 | 'sphinxSearchPreamble' => 'Displaying $1—$2 of $3 matches for query "<nowiki>$4</nowiki>" retrieved in $5 sec with these stats:', |
17 | | - 'sphinxSearchStats' => '"$1" found $2 times in $3 documents', |
18 | | - 'sphinxSearchStatsInfo' => 'Above numbers may include documents not listed due to search options.', |
| 17 | + 'sphinxSearchStats' => '* "$1" found $2 times in $3 documents', |
| 18 | + 'sphinxSearchStatsInfo' => "''Above numbers may include documents not listed due to search options.''", |
19 | 19 | 'sphinxSearchButton' => 'Search', |
20 | 20 | 'sphinxSearchEpilogue' => 'Additional database time was $1 sec.', |
21 | 21 | 'sphinxSearchDidYouMean' => 'Did you mean:', |