Annotation of embedaddon/php/ext/standard/tests/general_functions/bug44394.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #44394 (Last two bytes missing from output)
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: $string = "<a href='a?q=1'>asd</a>";
        !             7: 
        !             8: output_add_rewrite_var('a', 'b');
        !             9: 
        !            10: echo $string;
        !            11: 
        !            12: ob_flush();
        !            13: 
        !            14: ob_end_clean();
        !            15: 
        !            16: ?>
        !            17: --EXPECT--
        !            18: <a href='a?q=1&a=b'>asd</a>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>