Message2412

Author anonymous
Recipients
Date 2012-03-20.11:25:05
Content
With auto-indenting, the following code should appear as:

<?php
foreach ($x as $y)
  foreach ($y as $z)
    doSomething();
?>

However, it is auto-indented as:

<?php
foreach ($x as $y)
foreach ($y as $z)
  doSomething();
?>
History
Date User Action Args
2012-03-20 11:25:06anonymouslinkissue828 messages
2012-03-20 11:25:05anonymouscreate