git-svn-id: http://svn.automattic.com/wordpress/trunk@2206 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2005-02-02 10:57:07 +00:00
parent 2765f58e3e
commit 52f7a34456
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>"> <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div> <div>
<input type="text" name="s" id="s" size="15" /><br /> <input type="text" name="s" id="s" size="15" /><br />
<input type="submit" name="submit" value="<?php _e('Search'); ?>" /> <input type="submit" value="<?php _e('Search'); ?>" />
</div> </div>
</form> </form>
</li> </li>

View File

@ -1,5 +1,5 @@
<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>"> <form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /> <div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" />
<input type="submit" id="searchsubmit" name="Submit" value="Search" /> <input type="submit" id="searchsubmit" value="Search" />
</div> </div>
</form> </form>