When clicking the edit button on a question it jumps to the editform.
How does this work ?
In the qa-page-question-view.php I found the button:
if ($question['editbutton'])
$buttons['edit']=array(
'tags' => 'NAME="q_doedit"',
'label' => qa_lang_html('question/edit_button'),
'popup' => qa_lang_html('question/edit_q_popup'),
);
So it uses the name q_doedit to perform the action. But where can I find the matching code ?
I need to send over aparameter to the edit page.
Thanks on all hint...