diff --git a/VERSIONS_HOTLINE/80455 b/VERSIONS_HOTLINE/80455
new file mode 100644
index 0000000000000000000000000000000000000000..f3db7c52f441818a022b4ff088839af7989268be
--- /dev/null
+++ b/VERSIONS_HOTLINE/80455
@@ -0,0 +1 @@
+ - ticket #80455 : Cosmogramme : correction d'un libellé de format de date de nouveauté
\ No newline at end of file
diff --git a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php
index b386b05112b0c7c0e7e62541fcdecedf9990a085..b1c7897270f206d2c22fd7d080581d34fd1d5af3 100644
--- a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php
+++ b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php
@@ -256,6 +256,12 @@ class Cosmo_DataProfileControllerEditUnimarcKohaTest extends Cosmo_DataProfileCo
   }
 
 
+  /** @test */
+  public function nouveauteFormatAAAAMMJJShouldExists() {
+    $this->assertXPathContentContains('//select[@id="nouveaute_format"]/option', 'AAAAMMJJ');
+  }
+
+
   /** @test */
   public function multiInputNouveauteValeursShouldBePresent() {
     $this->assertXPath('//form//div[@id="multi_inputs_nouveaute_valeurs"]');
diff --git a/library/Class/IntProfilDonnees.php b/library/Class/IntProfilDonnees.php
index 1922cf6731d2b9775e232ef2d8d66bb49d5257e9..161307b1d541f20713ad2c8fe0731ebd05b9f573 100644
--- a/library/Class/IntProfilDonnees.php
+++ b/library/Class/IntProfilDonnees.php
@@ -193,7 +193,7 @@ class IntProfilDonneesLoader extends Storm_Model_Loader {
   public function getDateFormats() {
     return [Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_NONE => '',
             Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAA_MM_JJ => 'AAAA-MM-JJ',
-            Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAAMMJJ => 'AAAMMJJ',
+            Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAAMMJJ => 'AAAAMMJJ',
             Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_VALUES => $this->_('Valeur(s)'),
             Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_JJ_MM_AAAA => 'JJ-MM-AAAA',
             Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_SLASHED_JMAAAA => 'J/M/AAAA'];