|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-03-29 09:27 UTC] yohgaki@php.net
-Status: Open
+Status: Feedback
-Package: Feature/Change Request
+Package: *General Issues
[2012-03-29 09:27 UTC] yohgaki@php.net
[2012-03-29 09:34 UTC] der-coole-carl at gmx dot net
[2013-02-18 00:33 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 21:00:01 2025 UTC |
Description: ------------ it would be good if you can change url_rewriter.tags from a=href,area=href,frame=src,input=src,form=,fieldset= to a=href,area=href,frame=src,input=src,form=action,fieldset= if i use session_use_trans_sid it doesn't put the SID in my forms.. that's maybe you forgot the form=_action_ i don't know if it matters: i use: ob_start("ob_gzhandler"); to compress my code.. maybe this is relevant Reproduce code: --------------- <?php ini_set('session.use_trans_sid', 1); ?> <form action="test.php" method="post"> <input type="submit"> </form> in this example the user have to deactivate cookies Expected result: ---------------- i expect that the target url will be: test.php?phpsessid=1234 Actual result: -------------- actual the target url is test.php