new form helper funcions

I know that maybe this request will sound stupid, but I thinks we should add following function into CHtml helper.



    public static function endForm()


    {


      return self::tag('endform');


    }


Reason why I suggest to add this function and use it in view script is simple. When I’m writing view script and when I’m using editor which checks validity of HTML tags I’ve always problem with tag

</form>
which for editor is invalid.

We are using beginWidget, endWidget, beginCache, endCache. So why do not use form, endForm or beginForm endForm?

I am using

 CHtml::endTag(‘form’); 
to avoid these irritant warnings.

I added CHtml::beginForm and CHtml::endForm in SVN.

I've seen that. Thanks