diff --git a/htdocs/fichinter/fiche.php b/htdocs/fichinter/fiche.php
index e21d7ebbb2e..bd9d225d4e7 100644
--- a/htdocs/fichinter/fiche.php
+++ b/htdocs/fichinter/fiche.php
@@ -252,7 +252,7 @@ else if ($action == 'setnote_private' && $user->rights->ficheinter->creer)
// Add line
else if ($action == "addline" && $user->rights->ficheinter->creer)
{
- if (!GETPOST('np_desc','alpha'))
+ if (!GETPOST('np_desc'))
{
$mesg='
'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Description")).'
';
$error++;
@@ -269,7 +269,7 @@ else if ($action == "addline" && $user->rights->ficheinter->creer)
$ret=$object->fetch($id);
$object->fetch_thirdparty();
- $desc=GETPOST('np_desc','alpha');
+ $desc=GETPOST('np_desc');
$date_intervention = dol_mktime(GETPOST('dihour','int'), GETPOST('dimin','int'), 0, GETPOST('dimonth','int'), GETPOST('diday','int'), GETPOST('diyear','int'));
$duration = convertTime2Seconds(GETPOST('durationhour','int'), GETPOST('durationmin','int'));
@@ -342,7 +342,7 @@ else if ($action == 'updateline' && $user->rights->ficheinter->creer && GETPOST(
}
$object->fetch_thirdparty();
- $desc = GETPOST('np_desc','alpha');
+ $desc = GETPOST('np_desc');
$date_inter = dol_mktime(GETPOST('dihour','int'), GETPOST('dimin','int'), 0, GETPOST('dimonth','int'), GETPOST('diday','int'), GETPOST('diyear','int'));
$duration = convertTime2Seconds(GETPOST('durationhour','int'),GETPOST('durationmin','int'));