|
From: <ce...@us...> - 2004-01-10 22:43:00
|
Update of /cvsroot/csseditor/htdocs/templates
In directory sc8-pr-cvs1:/tmp/cvs-serv4289/templates
Modified Files:
common.php
Log Message:
Make the search form valid XHTML by nesting the input fields in a <p> element
Index: common.php
===================================================================
RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** common.php 10 Jan 2004 22:34:43 -0000 1.10
--- common.php 10 Jan 2004 22:42:57 -0000 1.11
***************
*** 76,82 ****
<div id="search">
<form method="get" action="<?php print $FindScript; ?>">
! <input type="hidden" name="action" value="find" />
! <label for="find"><?php print TMPL_Search; ?></label>
! <input type="text" id="find" name="find" />
</form>
</div>
--- 76,84 ----
<div id="search">
<form method="get" action="<?php print $FindScript; ?>">
! <p>
! <input type="hidden" name="action" value="find" />
! <label for="find"><?php print TMPL_Search; ?></label>
! <input type="text" id="find" name="find" />
! </p>
</form>
</div>
|