|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-31 13:22 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 03:00:01 2025 UTC |
Description: ------------ Trying to rewrite tags with session id, does not work. --- ./configure --with-mysql --enable-trans-sid ---- Apache 2.0, PHP 4.3.2 (cli) (built: Jul 18 2003 21:03:59) Reproduce code: --------------- ini_set("session.use_trans_sid", "1"); ini_set("url_rewriter.tags","a=href,area=href,frame=src,input=src,form=fakeentry,fieldset="); session_id('temp'); session_start(); $_SESSION["var"] = "testvar"; echo '<a href="index.php>'; // not rewritten Expected result: ---------------- Rewriting of tags with session id. Actual result: -------------- No tag rewriting.