Risolvere il bug sul batch delete in jroller – symfony 1.4

Soluzione per il bug che genera _csrf_token [CSRF attack detected.] nei batch delete

sostituire in linea 9 di plugins/sfAdminThemejRollerPlugin/data/generator/sfDoctrineModule/jroller/template/templates/_list_batch_actions.php

[?php $form = new sfForm(); if ($form->isCSRFProtected()): ?]

con

[?php $form = new BaseForm?(); if ($form->isCSRFProtected()): ?]