From: <ce...@us...> - 2004-01-10 22:34:46
|
Update of /cvsroot/csseditor/htdocs/templates In directory sc8-pr-cvs1:/tmp/cvs-serv3187/templates Modified Files: common.php Log Message: Specify field ID for use with the <label> element Index: common.php =================================================================== RCS file: /cvsroot/csseditor/htdocs/templates/common.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** common.php 8 Jan 2004 18:33:15 -0000 1.9 --- common.php 10 Jan 2004 22:34:43 -0000 1.10 *************** *** 78,82 **** <input type="hidden" name="action" value="find" /> <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" name="find" size="20" /> </form> </div> --- 78,82 ---- <input type="hidden" name="action" value="find" /> <label for="find"><?php print TMPL_Search; ?></label> ! <input type="text" id="find" name="find" /> </form> </div> *************** *** 174,181 **** </html> <?php ! ! $size = ob_get_length(); ! header("Content-Length: $size"); ! ob_end_flush(); } ?> --- 174,180 ---- </html> <?php ! $size = ob_get_length(); ! header("Content-Length: $size"); ! ob_end_flush(); } ?> |