Follow-up to r51572. SpecialSearch.php was a bit broken, because methods like getTitl...
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 7 Jun 2009 19:49:56 +0000 (19:49 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 7 Jun 2009 19:49:56 +0000 (19:49 +0000)
commit2000cf05c117fdddce5255b6faef37756d767c49
treecc719a76de3c69fc363dc99b25bb3562519103ec
parent8369bb8bccff9b60d8ba846e500dbf5f98c4f201
Follow-up to r51572. SpecialSearch.php was a bit broken, because methods like getTitleSnippet() will return an empty string which is used as text in link() which fails, because link will only linkText( $title ) if text is null.

P.s. could we change line 217 in Linker.php to something like "if( is_null( $text ) || $text == '' ) {" to work around this?
includes/specials/SpecialSearch.php