views:

17

answers:

0

I am trying Zend Studio before I buy it. I have noticed that a line like this:

<input type="hidden" name="id" value="<?php echo $this->album ['id']; ?>" />

will be changed to this:

<input type="hidden" name="id"

value="album ['id']; ?>" />

during the Format operation. Is there anyway to prevent this? It is very messy in my opinion.

Another example:

This:

<form action="<?php echo $this->url ( array ('action' => 'delete' ) ); ?>" method="post">

becomes this:

<form
action="<?php
 echo $this->url ( array ('action' => 'delete' ) );
 ?>"
 method="post">

Any help would be appreciated, thank you!