> Sure, here it is. Thank you!
>
> http://test.nmrwiki.org/wiki/index.php?title=Special:People&command=/...
>

Ok, so here is the source for one of your forms:

<td>Administrator (1)</td>
<form method="POST">
    <input type="hidden" name="title" value="Special:People"/>
    <input type="hidden" name="command" value="/people/moderate/"/>
    <input type="hidden" name="user_id" value="1"/>
    <td><input type="text" name="full_name" value=""/></td>
    <td><input type="text" name="first_name" value=""/></td>
    <td><input type="text" name="last_name" value=""/></td>
    <td>
        <input type="submit" name="approve" value="approve"/>
        <input type="submit" name="save_changes" value="save changes"/
>
    </td>
</form>

That is not valid markup.  If you look at Firebug you will see that
Firefox did not interpret this markup the way you had intended:

<tr><td>Administrator (1)</td>
<form method="POST"/>
    <input type="hidden" value="Special:People" name="title"/><input
type="hidden" value="/people/moderate/" name="command"/>
    <input type="hidden" value="1" name="user_id"/>
    <td><input type="text" value="" name="full_name"/></td>
    <td><input type="text" value="" name="first_name"/></td>
    <td><input type="text" value="" name="last_name"/></td>
    <td>
        <input type="submit" value="approve" name="approve"/>
        <input type="submit" value="save changes" name="save_changes"/
>
    </td>
</tr>

So the Form Plugin did not bind your submit inputs because they are
not children of the form in the DOM.

Mike

Reply via email to