Make WordPress Core


Ignore:
Timestamp:
06/11/2004 06:23:12 PM (21 years ago)
Author:
jverber
Message:

Fixed invalid XHTML in a number of admin pages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/link-manager.php

    r1355 r1411  
    344344         <tr>
    345345           <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>
    347347         </tr>
    348348         <tr>
     
    368368            <tr>
    369369                <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>
    371371            </tr>
    372372            <tr>
     
    656656</div>
    657657
     658<form name="links" id="links" method="post" action="">
    658659<div class="wrap">
    659660
    660     <form name="links" id="links" method="post" action="">
    661661    <input type="hidden" name="link_id" value="" />
    662662    <input type="hidden" name="action" value="" />
     
    727727            if ($show_buttons) {
    728728        echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&amp;action=linkedit" class="edit">' . __('Edit') . '</a></td>';
    729         echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&amp;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 . '&amp;action=Delete"' .  " onclick=\"return confirm('" . __("You are about to delete this link.\\n  \'Cancel\' to stop, \'OK\' to delete.") .  "');" . '" class="delete">' . __('Delete') . '</a></td>';
    730730        echo '<td><input type="checkbox" name="linkcheck[]" value="' . $link->link_id . '" /></td>';
    731731            } else {
     
    774774  } // end if !popup
    775775?>
     776</div>
    776777</form>
    777 </div>
    778778
    779779
Note: See TracChangeset for help on using the changeset viewer.