Crud Generation for forms and Eclipse

Hi!

There's a small problem when using yii together with eclipse. the yiic generated code creates forms by calling

CHtml::form()

and closes the form via </form> Tag.

This unbalances the tags and Eclipse shows an error in the </form> line because it can't find the opening <form> Tag.

Could you please use

<?php echo CHtml::closeTag('form'); ?>

instead of </form>, this makes Eclipse happy (and me, too!!)

Michael

It is already fixed in SVN. Thanks!

Thank you very much!