Project

General

Profile

Actions

Bug #15786

closed

Admin Panel does not work anymore

Added by old_beko over 18 years ago. Updated over 18 years ago.

Status:
Closed
Priority:
Should have
Category:
Backend User Interface
Target version:
-
Start date:
2006-03-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

From T3 4.0b2 to 4.0b3 the method in the admin panel form has changed from post to get. This results in wrong behavior. Clicking the update button loads the first page.

Reason is the combination of GET parameters in the action URL and the method GET. For example after submitting the following form, the server will ONLY receive the xy parameter, but not the id.
<form action="index.php?id=1234" method="get">
<input type="submit" />
<input type="hidden" name="xy" value="4321" />
</form>

Solution: Replace get with post again.
Other solution: Implement hidden fields with the parameters from the action URL.
Maybe simulate static documents will do as a workaround.
(issue imported from #M2798)

Actions #1

Updated by Ingmar Schlecht over 18 years ago

Sebastian has fixed this in CVS, so it'll be working again in 4.0 RC1.

Actions

Also available in: Atom PDF