Using lists instead of tables with sfGuardAuth

For some reason, symfony 1.1’s new sfForm class is using sfWidgetFormSchemaFormatterTable by default, instead of sfWidgetFormSchemaFormatterList. This means that you get a form based on tables, while I prefer to think of my form as a list to fill in. To change this you can use this chain:

$form->getWidgetSchema()->setFormFormatterName(‘list’);

The question is, “where do you put this [...]