OKay ... I finally found the solution
hook :
newpost_process
PHP Code:
if ($type == 'thread')
{
// check the data of filed (Content is not empty and also only numbers)
if (! is_numeric ($vbulletin->GPC['user_contact']) || $vbulletin->GPC['user_contact'] == '')
{
// Here is the error message
$dataman->error('user_contact_msgerror');
}else{
$dataman->setr('user_contact', htmlspecialchars_uni($post['user_contact']));
}
}
Thank you ,
kh99