Changeset 1100 for trunk/wp-admin/link-add.php
- Timestamp:
- 04/19/2004 08:09:27 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-add.php
r1076 r1100 3 3 $title = 'Add Link'; 4 4 $this_file = 'link-manager.php'; 5 $parent_file = 'link-manager.php'; 5 6 6 7 function category_dropdown($fieldname, $selected = 0) { … … 84 85 </tr> 85 86 <tr> 86 <th scope="row"> Description:</th>87 <th scope="row">Short description:</th> 87 88 <td><input type="text" name="description" value="" style="width: 95%" /></td> 88 89 </tr> … … 94 95 </fieldset> 95 96 <p class="submit"> 96 <input type="submit" name="submit" value="Add Link »" >97 <input type="submit" name="submit" value="Add Link »" /> 97 98 </p> 98 99 <fieldset class="options"> … … 189 190 </fieldset> 190 191 <p class="submit"> 191 <input type="submit" name="submit" value="Add Link »" >192 <input type="submit" name="submit" value="Add Link »" /> 192 193 </p> 193 194 <fieldset class="options"> … … 195 196 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 196 197 <tr> 197 <th width="33%" scope="row">Image :</th>198 <td width="67%"><input type="text" name="image" size="50" value="" ></td>198 <th width="33%" scope="row">Image URI:</th> 199 <td width="67%"><input type="text" name="image" size="50" value="" style="width: 95%" /></td> 199 200 </tr> 200 201 <tr> 201 202 <th scope="row">RSS URI: </th> 202 <td><input name="rss_uri" type="text" id="rss_uri" value="" size="50"></td> 203 </tr> 204 <tr> 205 <th scope="row">Description</th> 206 <td> </td> 203 <td><input name="rss_uri" type="text" id="rss_uri" value="" size="50" style="width: 95%" /></td> 207 204 </tr> 208 205 <tr> 209 206 <th scope="row">Notes:</th> 210 <td><textarea name="notes" cols="50" rows="10" ></textarea></td>207 <td><textarea name="notes" cols="50" rows="10" style="width: 95%"></textarea></td> 211 208 </tr> 212 209 <tr> … … 224 221 <th scope="row">Target</th> 225 222 <td><label> 226 <input type="radio" name="target" value="_blank" >223 <input type="radio" name="target" value="_blank" /> 227 224 <code>_blank</code></label> 228 229 <label> 230 <br> 231 <input type="radio" name="target" value="_top"> 225 <br /> 226 <label><input type="radio" name="target" value="_top" /> 232 227 <code>_top</code></label> 233 234 <label> 235 <br> 236 <input type="radio" name="target" value="" checked="checked"> 228 <br /> 229 <label><input type="radio" name="target" value="" checked="checked" /> 237 230 none</label> 238 231 (Note that the <code>target</code> attribute is illegal in XHTML 1.1 and 1.0 Strict.)</td> … … 241 234 <th scope="row">Visible:</th> 242 235 <td><label> 243 <input type="radio" name="visible" checked="checked" value="Y" >244 Yes</label>< label><br>245 < input type="radio" name="visible" value="N"> <input type="hidden" name="action" value="Add" />236 <input type="radio" name="visible" checked="checked" value="Y" /> 237 Yes</label><br /> 238 <label><input type="radio" name="visible" value="N"> <input type="hidden" name="action" value="Add" /> 246 239 No</label></td> 247 240 </tr> … … 250 243 251 244 <p class="submit"> 252 <input type="submit" name="submit" value="Add Link »" >245 <input type="submit" name="submit" value="Add Link »" /> 253 246 </p> 254 247 </form>
Note: See TracChangeset
for help on using the changeset viewer.