hmm... you sure Mist?
because to my knowledge you don't need to add brackets for one line codes... unless you altered the code in anyway ( adding more info inside the while for instance )
because the example:
PHP Code:
if( $this == "that: )
echo $this;
is the same as:
PHP Code:
if( $this == "that" )
{
echo $this;
}
just if you don't have brackets it will only read one line to my knowledge if you added more code thats probably why you got an error...
regards,
g-force2k2