Add id attribute where it's only name. fixes #3696

git-svn-id: https://develop.svn.wordpress.org/trunk@5323 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
rob1n
2007-04-27 00:47:01 +00:00
parent 0ec4ef6a75
commit d8062bbc62
7 changed files with 23 additions and 26 deletions

View File

@@ -76,7 +76,7 @@ if ( is_month() ) {
<form name="searchform" id="searchform" action="" method="get">
<fieldset>
<legend><?php _e('Search Posts&hellip;') ?></legend>
<input type="text" name="s" value="<?php if (isset($s)) echo attribute_escape($s); ?>" size="17" />
<input type="text" name="s" id="s" value="<?php if (isset($s)) echo attribute_escape($s); ?>" size="17" />
<input type="submit" name="submit" value="<?php _e('Search') ?>" class="button" />
</fieldset>
</form>