Make WordPress Core

Changeset 108


Ignore:
Timestamp:
05/26/2003 11:15:10 PM (23 years ago)
Author:
mikelittle
Message:

Fixed Javscript error in opera

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/linkmanager.php

    r96 r108  
    418418
    419419    <table width="100%" cellpadding="1" cellspacing="0" border="0">
    420     <form name="links" method="post">
     420    <form name="links" id="links" method="post">
    421421    <input type="hidden" name="link_id" value="" />
    422422    <input type="hidden" name="action" value="" />
     
    474474      }
    475475      echo("  <td>".stripslashes($row->category)."</td>\n");
    476       echo("  <td><input type=\"submit\" name=\"edit\" onclick=\"forms['links'].link_id.value='$row->link_id'; forms['links'].action.value='linkedit'; \" value=\"Edit\" class=\"search\" /></td>\n");
    477       echo("  <td><input type=\"submit\" name=\"delete\" onclick=\"forms['links'].link_id.value='$row->link_id'; forms['links'].action.value='Delete'; return confirm('You are about to delete this link.\\n  \'Cancel\' to stop, \'OK\' to delete.'); \" value=\"Delete\" class=\"search\" /></td>\n");
     476      echo("  <td><input type=\"submit\" name=\"edit\" onclick=\"document.forms['links'].link_id.value='$row->link_id'; document.forms['links'].action.value='linkedit'; \" value=\"Edit\" class=\"search\" /></td>\n");
     477      echo("  <td><input type=\"submit\" name=\"delete\" onclick=\"document.forms['links'].link_id.value='$row->link_id'; document.forms['links'].action.value='Delete'; return confirm('You are about to delete this link.\\n  \'Cancel\' to stop, \'OK\' to delete.'); \" value=\"Delete\" class=\"search\" /></td>\n");
    478478      echo("</tr>\n");
    479479
Note: See TracChangeset for help on using the changeset viewer.