ID: 31647
Updated by: [email protected]
Reported By: jeff at wecreate dot com
-Status: Feedback
+Status: No Feedback
Bug Type: Output Control
Operating System: Linux / Apache
PHP Version: 4.3.10
New Comment:
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
Previous Comments:
------------------------------------------------------------------------
[2005-01-24 04:43:10] [EMAIL PROTECTED]
So what exactly should happen (in your opinion) when you call this
function twice for same variable?
I don't think we'll "fix" this since there isn't really anything to fix
here. IMO.
------------------------------------------------------------------------
[2005-01-21 21:54:55] jeff at wecreate dot com
Description:
------------
multiple calls to output_add_rewrite_var() with identical vars creates
multiple entries on the link.
Reproduce code:
---------------
output_add_rewrite_var("var","a");
output_add_rewrite_var("var","b");
echo '<a href="test.php">test</a>';
Expected result:
----------------
<a href="test.php?var=b">test</a>
Actual result:
--------------
<a href="test.php?var=a&var=b">test</a>
this is useless as var can only have one value.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31647&edit=1