1 <tr> 2 <th class="form-label_left"> 3 Patch name 4 </th> 5 <td class="form-input"> 6 <p class="cell_note"> 7 The patch name must be shorter than 80 characters and it must only contain alpha-numeric characters, dots, underscores or hyphens. 8 </p> 9 <input type="text" maxlength="80" size="40" name="in[patchname]" value="<?php echo clean($patchname) ?>"><br> 10 </td> 11 </tr> 12 <tr> 13 <th class="form-label_left"> 14 Patch file: 15 <p class="cell_note"> 16 A patch file created using <kbd>git diff</kbd> (unified diff format) 17 </p> 18 </th> 19 <td class="form-input"> 20 <input type="file" name="patchfile" value="<?php echo clean($patchfile) ?>"> 21 </td> 22 </tr> 23