我有这个我的 template.php
function mythemename_form_alter($form, $form_state, $form_id) {
print($form_id);
if ($form_id == 'webform_client_form_61') {
print ('called');
$form['#action'] = 'my-new-page';
}
}
当它被调用时,它不会改变表单的动作。(它是一个网络表单块)在不创建模块的情况下这可能吗?