Diff for /embedaddon/php/tests/lang/short_tags.004.phpt between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:48:06 version 1.1.1.2, 2012/05/29 12:34:34
Line 4  short_open_tag: Off, asp_tags: Off Line 4  short_open_tag: Off, asp_tags: Off
 short_open_tag=off  short_open_tag=off
 asp_tags=off  asp_tags=off
 --FILE--  --FILE--
 <?='this should get echoed'?>  
   
 <%= 'so should this' %>  <%= 'so should this' %>
   
 <?php  <?php
Line 21  $a = 'This gets echoed twice'; Line 19  $a = 'This gets echoed twice';
 <?php  <?php
    echo "{$b}";     echo "{$b}";
 ?>  ?>
   <?= "{$b}"?>
 --EXPECTF--  --EXPECTF--
 <?='this should get echoed'?>  
   
 <%= 'so should this' %>  <%= 'so should this' %>
   
   
<?= $a?>This gets echoed twice
 
 <%= $a%>  <%= $a%>
   
 <? $b=3; ?>  <? $b=3; ?>
   
   
   Notice: Undefined variable: b in %s on line %d
   
 Notice: Undefined variable: b in %s on line %d  Notice: Undefined variable: b in %s on line %d

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


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