Changeset 1411 for trunk/wp-admin/link-manager.php
- Timestamp:
- 06/11/2004 06:23:12 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-manager.php
r1355 r1411 344 344 <tr> 345 345 <th width="33%" scope="row"><?php _e('URI:') ?></th> 346 <td width="67%"><input type="text" name="linkurl" value="<?php echo $link_url; ?>" style="width: 95%; /"></td>346 <td width="67%"><input type="text" name="linkurl" value="<?php echo $link_url; ?>" style="width: 95%;" /></td> 347 347 </tr> 348 348 <tr> … … 368 368 <tr> 369 369 <th width="33%" scope="row"><?php _e('rel:') ?></th> 370 <td width="67%"><input type="text" name="rel" id="rel" size="50" value="<?php echo $link_rel; ?>" ></td>370 <td width="67%"><input type="text" name="rel" id="rel" size="50" value="<?php echo $link_rel; ?>" /></td> 371 371 </tr> 372 372 <tr> … … 656 656 </div> 657 657 658 <form name="links" id="links" method="post" action=""> 658 659 <div class="wrap"> 659 660 660 <form name="links" id="links" method="post" action="">661 661 <input type="hidden" name="link_id" value="" /> 662 662 <input type="hidden" name="action" value="" /> … … 727 727 if ($show_buttons) { 728 728 echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&action=linkedit" class="edit">' . __('Edit') . '</a></td>'; 729 echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&action=Delete"' . " onclick=\"return confirm('" . __("You are about to delete this link.\\n \'Cancel\' to stop, \'OK\' to delete.") . "');" . '" class="delete">' . __('Delete') . '</a></td>';729 echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&action=Delete"' . " onclick=\"return confirm('" . __("You are about to delete this link.\\n \'Cancel\' to stop, \'OK\' to delete.") . "');" . '" class="delete">' . __('Delete') . '</a></td>'; 730 730 echo '<td><input type="checkbox" name="linkcheck[]" value="' . $link->link_id . '" /></td>'; 731 731 } else { … … 774 774 } // end if !popup 775 775 ?> 776 </div> 776 777 </form> 777 </div>778 778 779 779
Note: See TracChangeset
for help on using the changeset viewer.