On 4/8/2006, at 19:33, Benoit Gagnon wrote: >> [FIXED] Syntax highlight no longer stalls where two PHP tags >> "touch" (example: `<?= $foo ?><?= $bar ?>`) > > I'm confused.. Is <?= really a valid PHP opening tag ? I thought it > was only <?php or <?, if short tags are enabled. <?= $foo ?> is short for: <?php echo $foo; ?>