Commit:    2133a81fd043775929d3e9a0054325ed9abf6ec5
Author:    Hannes Magnusson <[email protected]>         Thu, 21 Nov 2013 
09:09:41 -0800
Parents:   5252b714240765598db4aca3116c00aa118ac5fc
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=2133a81fd043775929d3e9a0054325ed9abf6ec5

Log:
</input> doesn't exist, fixes bug #66137

Make the <input>s on this page consistent, atleast within the same form :)

Bugs:
https://bugs.php.net/66137

Changed paths:
  M  include/header.inc


Diff:
diff --git a/include/header.inc b/include/header.inc
index cba0198..043f6fb 100755
--- a/include/header.inc
+++ b/include/header.inc
@@ -78,7 +78,7 @@ if (isset($shortname) && $shortname) {
       <div class="row-fluid">
         <a href="/" class="brand"><img src="/images/logos/[email protected]" 
width="48" height="24" alt="php"/></a>
         <div id="mainmenu-toggle-overlay"></div>
-        <input type="checkbox" id="mainmenu-toggle"></input>
+        <input type="checkbox" id="mainmenu-toggle">
         <ul class="nav">
           <li class="<?php echo $curr == "downloads" ? "active" : ""?>"><a 
href="/downloads">Downloads</a></li>
           <li class="<?php echo $curr == "docs" ? "active" : ""?>"><a 
href="/docs.php">Documentation</a></li>
@@ -87,7 +87,7 @@ if (isset($shortname) && $shortname) {
         </ul>
         <form class="navbar-search span3" id="topsearch" action="/search.php">
             <input type="hidden" name="show" value="quickref">
-            <input type="search" name="pattern" class="search-query" 
placeholder="Search"/>
+            <input type="search" name="pattern" class="search-query" 
placeholder="Search">
         </form>
       </div>
     </div>


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to