php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #76209 Unexpected behaviour for output_add_rewrite_var treating links to url fragments
Submitted: 2018-04-11 14:35 UTC Modified: 2018-04-11 14:39 UTC
From: michele dot scaramal at sella dot it Assigned:
Status: Duplicate Package: Output Control
PHP Version: 7.2.4 OS: windows, apache 2.4.33 win 64
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: michele dot scaramal at sella dot it
New email:
PHP Version: OS:

 

 [2018-04-11 14:35 UTC] michele dot scaramal at sella dot it
Description:
------------
The function output_add_rewrite_var is not treating correctly links to fragments on the same html document.


url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"

Test script:
---------------
ob_start();
output_add_rewrite_var('var', 'value');
echo "<a href='#anchor'>anchor link</a>";
ob_end_flush();
die;




Expected result:
----------------
Result 7.1.16: 
<a href='#anchor'>anchor link</a>Array

Actual result:
--------------
Result 7.2.4: 
<a href='#anchor/?var=value'>anchor link</a>


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2018-04-11 14:39 UTC] requinix@php.net
-Status: Open +Status: Duplicate
 [2018-04-11 14:39 UTC] requinix@php.net
Duplicate of bug #74892
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 19:01:29 2024 UTC