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
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
48 - 29 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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 Apr 18 20:01:30 2024 UTC