|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-04 21:47 UTC] jorton@php.net
[2005-01-11 15:11 UTC] jorton@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 10:00:01 2025 UTC |
Description: ------------ virtual() seems to put included code/text in the wrong place. I'm guessing this is possibly related to bug#30445. Reproduce code: --------------- <html> <head><title></title></head <body> <p>Line0</p1> <?php virtual("i1"); ?> <p>Line2</p> </body> ---- i1.html: <p>Line1</p> Expected result: ---------------- <html> <head><title></title></head ><body> <p>Line0</p> <p>Line1</p> <p>Line2</p> </body> Actual result: -------------- <p>Line1</p> <html> <head><title></title></head ><body> <p>Line0</p> <p>Line2</p> </body>