diff options
| author | fisharebest <fisharebest@gmail.com> | 2012-03-28 13:33:58 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2012-03-28 13:33:58 +0000 |
| commit | 9d1b6c193ed79b6f2252bc7d28a831b4c377437f (patch) | |
| tree | da6153872203215e55727108b074c35f8c72344d /search.php | |
| parent | 67e8d3e0ebb6cdb5c161081fbb36fc9f9eb0bd17 (diff) | |
| download | webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.tar.gz webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.tar.bz2 webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.zip | |
Functions should return HTML, rather than output it
Diffstat (limited to 'search.php')
| -rw-r--r-- | search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search.php b/search.php index 8a129352bd..8ed1f5b6b6 100644 --- a/search.php +++ b/search.php @@ -107,7 +107,7 @@ echo '<div id="search-page"> echo '<div class="label">' , WT_I18N::translate('Search for'), '</div> <div class="value"><input tabindex="1" id="firstfocus" type="text" name="query" value="'; if (isset($controller->myquery)) echo $controller->myquery; - echo '" size="40">' , print_specialchar_link('firstfocus', false), '</div> + echo '" size="40"> ', print_specialchar_link('firstfocus'), '</div> <div class="label">' , WT_I18N::translate('Records'), '</div> <div class="value"><p> <input type="checkbox"'; |
