diff --git a/ChangeLog b/ChangeLog
index 0bb51e86c7506de921e8da92175a1a7c3108ebf5..e9da692911331034c6c14d569a2404d3cfc5b273 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@ make a Dolibarr upgrade.
 ***** ChangeLog for 3.7.2 compared to 3.7.1 *****
 FIX [ bug #2855 ] Wrong translation key in localtax report page
 FIX [ bug #1852 ] JS error when editing a customer order line
+FIX [ bug #2900 ] Courtesy title is not stored in create thirdparty form
 
 ***** ChangeLog for 3.7.1 compared to 3.7.* *****
 FIX Bug in the new photo system
diff --git a/htdocs/societe/soc.php b/htdocs/societe/soc.php
index 2a9e159558ce88812854eddb4b6a0cd690289389..bddbd174f6e602692334c56b7855c3b44e78df88 100644
--- a/htdocs/societe/soc.php
+++ b/htdocs/societe/soc.php
@@ -137,7 +137,7 @@ if (empty($reshook))
             $object->particulier       = GETPOST("private");
 
             $object->name              = dolGetFirstLastname(GETPOST('firstname','alpha'),GETPOST('nom','alpha')?GETPOST('nom','alpha'):GETPOST('name','alpha'));
-            $object->civility_id       = GETPOST('civility_id', 'int');
+            $object->civility_id       = GETPOST('civility_id');
             // Add non official properties
             $object->name_bis          = GETPOST('name','alpha')?GETPOST('name','alpha'):GETPOST('nom','alpha');
             $object->firstname         = GETPOST('firstname','alpha');