[TYPO3-core] admin panel doesn't stay on page

Ingmar Schlecht ingmar at typo3.org
Sun Feb 26 13:01:45 CET 2006


Martin Kutschker wrote:
> The GET parameters don't include the id.
> 
> Can anyone confirm this bug?

I didn't check this, but to me it sounds pretty obvious:
Karsten changed the admin panel to use GET instead of POST [1], but
didn't add new <input type="hidden" ...> fields for the ID and the TYPE.

This won't work:
<form action="index.php?id=123" method="GET">

Whereas the same thing with POST *does* work:
<form action="index.php?id=123" method="POST">

For GET it needs to be:
<form action="index.php" method="GET">
<input type="hidden" name="id" value="123" />

cheers,
Ingmar

[1] [TYPO3-core] RFC: Change admin panel to use get instead of post



More information about the TYPO3-team-core mailing list