ID: 26862 Updated by: [EMAIL PROTECTED] Reported By: nunoplopes at sapo dot pt -Status: Open +Status: Verified Bug Type: Output Control Operating System: Win XP -PHP Version: 4CVS-2004-01-10 (stable) +PHP Version: 4CVS, 5CVS
Previous Comments: ------------------------------------------------------------------------ [2004-01-10 11:42:24] nunoplopes at sapo dot pt Description: ------------ When using the given code, ob_flush() doesn't output all the buffer. When using ob_get_flush() it works as expected. Reproduce code: --------------- <?php session_start(); output_add_rewrite_var('var', 'value'); echo '<a href="file.php">link</a>'; ob_flush(); output_reset_rewrite_vars(); echo '<a href="file.php">link</a>'; ?> Expected result: ---------------- <a href="file.php?SESSID=xxx&var=value">link</a><a href="file.php">link</a> Actual result: -------------- <a href="file.php?SESSID=xxx&var=value">link</<a href="file.php">link</a> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=26862&edit=1