Ok, so I've got a neat little form created with the node-form-xxx.tpl suggestion. Now, I want to expose that form in a panel (more specifically, in QuickTabs). I am trying to get the form with

<?php
   
return drupal_get_form('node_form_walk');
 
?>

with walk being my custom content...but get the error:

warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'node_form_walk' was given in /home/xxx/public_html/xxx/includes/form.inc on line 371.

Does this new form need to be registered within drupal for it to be called elsewhere?

--hippy

nobody click here