summaryrefslogtreecommitdiff
path: root/search.php
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2012-04-11 10:30:28 +0000
committerfisharebest <fisharebest@gmail.com>2012-04-11 10:30:28 +0000
commit70164ad2563b38b815482ad15144e962c96bb89c (patch)
treebd17975c39db7cfb6adb45a1b7a56b1c2729b7c9 /search.php
parent4044f2f9582bd3bed220218d3f2a0eb8661e78a6 (diff)
downloadwebtrees-70164ad2563b38b815482ad15144e962c96bb89c.tar.gz
webtrees-70164ad2563b38b815482ad15144e962c96bb89c.tar.bz2
webtrees-70164ad2563b38b815482ad15144e962c96bb89c.zip
validation error - missing ">"
Diffstat (limited to 'search.php')
-rw-r--r--search.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/search.php b/search.php
index 081638b420..62c0c3edf3 100644
--- a/search.php
+++ b/search.php
@@ -133,8 +133,8 @@ echo '<div id="search-page">
</p></div>
<div class="label">' , WT_I18N::translate('Exclude filter'), help_link('search_exclude_tags'), '</div>
<div class="value"><p>
- <input type="radio" id="tagfilter_on" name="tagfilter" value="on" ';
- if (($controller->tagfilter == "on") || ($controller->tagfilter == "")) echo ' checked="checked"';
+ <input type="radio" id="tagfilter_on" name="tagfilter" value="on"';
+ if (($controller->tagfilter == 'on') || ($controller->tagfilter == "")) echo ' checked="checked"';
echo '><label for="tagfilter_on">' , WT_I18N::translate('Exclude some non-genealogical data'), '</label>
</p><p>
<input type="radio" id="tagfilter_off" name="tagfilter" value="off"';
@@ -143,8 +143,8 @@ echo '<div id="search-page">
</p></div>
<div class="label">' , WT_I18N::translate('Associates'), help_link('search_include_ASSO'), '</div>
<div class="value"><input type="checkbox" id="showasso" name="showasso" value="on"';
- if ($controller->showasso == "on") echo ' checked="checked" ';
- echo '<label for="showasso">' , WT_I18N::translate('Show related persons/families'), '</label></div>';
+ if ($controller->showasso == 'on') echo ' checked="checked"';
+ echo '><label for="showasso">' , WT_I18N::translate('Show related persons/families'), '</label></div>';
}
//========== Search and replace Search Form ==========
if ($controller->action == "replace") {