php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19021 incorrect rewrite tags with PHPSESSID
Submitted: 2002-08-21 10:57 UTC Modified: 2002-08-21 10:59 UTC
From: lyu at ua dot fm Assigned:
Status: Closed Package: Session related
PHP Version: 4.1.2 OS: any
Private report: No CVE-ID: None
 [2002-08-21 10:57 UTC] lyu at ua dot fm
When I use session, link like a 
  <a href="index.php?a=b">X</a>
PHP rewite tag
  <a href="index.php?a=b&PHPSESSID=.....">X</a>
instead of
  <a href="index.php?a=b&amp;PHPSESSID=.....">X</a>
                        ^^^^^
Validate your page with http://validator.w3.org/
May be this feature cat be optional

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-08-21 10:59 UTC] derick@php.net
Already implemented, change the arg_seperator.output setting in php.ini to "&amp;":

; The separator used in PHP generated URLs to separate arguments.
; Default is "&".
;arg_separator.output = "&amp;"


Derick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed May 15 18:01:34 2024 UTC