ID:               44394
 Updated by:       [EMAIL PROTECTED]
 Reported By:      weirdan at gmail dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Output Control
 Operating System: Windows XP
 PHP Version:      5.2.5
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows (zip):
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

For Windows (installer):

  http://snaps.php.net/win32/php5.2-win32-installer-latest.msi




Previous Comments:
------------------------------------------------------------------------

[2008-03-10 16:03:29] weirdan at gmail dot com

Description:
------------
It seems like a regression of http://bugs.php.net/bug.php?id=26862 -
two last bytes missing from output when using ob_flush() +
ob_end_clean(). ob_end_flush() works as expected though.

The same issue is observed on PHP 5.2.3 / Linux

Reproduce code:
---------------
<?php
$string = "<a href='a?q=1'>asd</a>";
output_add_rewrite_var('a', 'b');
echo $string;
ob_flush();
ob_end_clean();

Expected result:
----------------
<a href='a?q=1&a=b'>asd</a>

Actual result:
--------------
<a href='a?q=1&a=b'>asd</


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=44394&edit=1

Reply via email to