diff options
-rw-r--r-- | themes/bluemarine/page.tpl.php | 2 | ||||
-rw-r--r-- | themes/pushbutton/page.tpl.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/themes/bluemarine/page.tpl.php b/themes/bluemarine/page.tpl.php index 0ca11414d..0a52cb1ba 100644 --- a/themes/bluemarine/page.tpl.php +++ b/themes/bluemarine/page.tpl.php @@ -24,7 +24,7 @@ <div id="primary"><?php print theme('links', $primary_links) ?></div> <?php if ($search_box) { ?><form action="<?php print $search_url ?>" method="post"> <div id="search"> - <input class="form-text" type="text" size="15" value="" name="keys" alt="<?php print $search_description ?>" /> + <input class="form-text" type="text" size="15" value="" name="edit[keys]" alt="<?php print $search_description ?>" /> <input class="form-submit" type="submit" value="<?php print $search_button_text ?>" /> </div> </form><?php } ?> diff --git a/themes/pushbutton/page.tpl.php b/themes/pushbutton/page.tpl.php index f10f65927..1e1262054 100644 --- a/themes/pushbutton/page.tpl.php +++ b/themes/pushbutton/page.tpl.php @@ -56,7 +56,7 @@ <?php if ($search_box): ?> <form action="<?php print $search_url ?>" method="post"> <div id="search"> - <input class="form-text" type="text" size="15" value="" name="keys" alt="<?php print $search_description ?>" /> + <input class="form-text" type="text" size="15" value="" name="edit[keys]" alt="<?php print $search_description ?>" /> <input class="form-submit" type="submit" value="<?php print $search_button_text ?>" alt="submit" /> </div> </form> @@ -139,4 +139,4 @@ <?php endif; ?> <?php print $closure;?> </body> -</html>
\ No newline at end of file +</html> |