thx. done.

that was eays.
what i did so far.
1) custom_config.inc.php
/* Defaultvalues */
$g_testcase_template->summary="My summary";
$g_testcase_template->steps="My steps";
$g_testcase_template->expected_results="My Results";
2) tcEdit.php
at the end of the file where we have this:
if ($show_newTC_form)
{
...
$my_template = config_get('testcase_template');
foreach ($a_ofck as $key)
{
// Warning:
// the data assignment will work while the keys in $the_data are identical
// to the keys used on $oFCK.
$of = &$oFCK[$key];
/* $of->Value = ""; old version */
$of->Value = $my_template->$key;
$smarty->assign($key, $of->CreateHTML());
}
}

. this is fine for me.
regards
Kester