diff --git a/VERSIONS_HOTLINE/137304 b/VERSIONS_HOTLINE/137304
new file mode 100644
index 0000000000000000000000000000000000000000..0e487e0b7b4dc97b1798bab70c0c335387704afd
--- /dev/null
+++ b/VERSIONS_HOTLINE/137304
@@ -0,0 +1 @@
+ - ticket #137304 : workflow : L'url dans le mail de notification d'article à valider pointe maintenant sur l'interface professionnelle
\ No newline at end of file
diff --git a/library/Class/Article/WorkflowNotification.php b/library/Class/Article/WorkflowNotification.php
index 8dbdafc26b3e57b8e909eff309a0cdd63aef350f..eba88cba6017c4a3120c281b1c7e6044bcfc9282 100644
--- a/library/Class/Article/WorkflowNotification.php
+++ b/library/Class/Article/WorkflowNotification.php
@@ -86,7 +86,7 @@ class Class_Article_WorkflowNotification {
 
   protected function _bodyText() {
     $replacements = ['TITRE_ARTICLE' => $this->_article->getTitre(),
-                     'URL_ARTICLE' => Class_Url::absolute($this->_article->getUrl(), null, true),
+                     'URL_ARTICLE' => (new ZendAfi_View_Helper_TagEditArticle)->getEditUrl($this->_article),
                      'AUTHOR_ARTICLE' => $this->_article->getNomCompletAuteur(),
                      'SAVED_BY_ARTICLE' => $this->_user->getNomComplet(),
                      'NEXT_STATUS_ARTICLE' => $this->_article->getNextWorkflowStatusLabel(),
diff --git a/library/ZendAfi/View/Helper/TagEditArticle.php b/library/ZendAfi/View/Helper/TagEditArticle.php
index 6a5405556f692c9e6351cfa795c6addc3585a220..ff629920a19b1d8362a997e7948701d7e3577265 100644
--- a/library/ZendAfi/View/Helper/TagEditArticle.php
+++ b/library/ZendAfi/View/Helper/TagEditArticle.php
@@ -59,10 +59,8 @@ class ZendAfi_View_Helper_TagEditArticle extends ZendAfi_View_Helper_BaseHelper
   protected function _renderEdit() {
     return $this
       ->_renderActionLink('edit', $this->_('Modifier l\'article %s', $this->_article->getTitre()),
-                          ['module' => 'admin',
-                           'controller' => 'cms',
-                           'action' => 'edit',
-                           'id' => $this->_article->getId()]);
+                          $this->getEditUrl($this->_article));
+
   }
 
 
@@ -86,4 +84,12 @@ class ZendAfi_View_Helper_TagEditArticle extends ZendAfi_View_Helper_BaseHelper
     return $this->view->tagAnchor($url, $icon,
                                   ['data-popup' => 'true', 'title' => $label]);
   }
+
+
+  public function getEditUrl($article) {
+    return Class_Url::absolute(['module' => 'admin',
+                                'controller' => 'cms',
+                                'action' => 'edit',
+                                'id' => $article->getId()]);
+  }
 }
diff --git a/tests/application/modules/admin/controllers/CmsControllerTest.php b/tests/application/modules/admin/controllers/CmsControllerTest.php
index 8859c19d9ca356a760a426ace80a63d3f318739f..79f90eccddfd49e2f4347e529197b31cc75b3bf1 100644
--- a/tests/application/modules/admin/controllers/CmsControllerTest.php
+++ b/tests/application/modules/admin/controllers/CmsControllerTest.php
@@ -1722,7 +1722,7 @@ class CmsControllerNewsAddActionPostWithWorkflowTest
   /** @test */
   public function sentMailToAuthorWhenNewsIsValidatedShouldContainsDefaultBody() {
     $this->postArticleValidated();
-    $this->assertEquals('L\'article Katsuhiro Otomo en dédicace ! a été validé par Mario Super. http://localhost'.BASE_URL.'/cms/articleview/id/18',quoted_printable_decode($this->mock_transport->getSentMails()[0]->getBodyText()->getContent()));
+    $this->assertEquals('L\'article Katsuhiro Otomo en dédicace ! a été validé par Mario Super. http://localhost'.BASE_URL.'/admin/cms/edit/id/18',quoted_printable_decode($this->mock_transport->getSentMails()[0]->getBodyText()->getContent()));
   }
 
 
@@ -1819,7 +1819,7 @@ class CmsControllerNewsAddActionPostWithWorkflowTest
   /** @test */
   public function sentMailToAdminWhenValidationPendingShouldContainsDefaultText() {
     $this->postArticleAValider();
-    $this->assertEquals('Un nouvel article de Batman est à valider. Katsuhiro Otomo en dédicace ! http://localhost'.BASE_URL.'/cms/articleview/id/18',quoted_printable_decode($this->mock_transport->getSentMails()[0]->getBodyText()->getContent()));
+    $this->assertEquals('Un nouvel article de Batman est à valider. Katsuhiro Otomo en dédicace ! http://localhost'.BASE_URL.'/admin/cms/edit/id/18',quoted_printable_decode($this->mock_transport->getSentMails()[0]->getBodyText()->getContent()));
   }
 
 
@@ -1939,7 +1939,7 @@ class CmsControllerNewsAddActionPostWithDynamicWorkflowTest  extends CmsControll
    * @test
    */
   public function sentMailShouldContainsStatuses($content) {
-    $this->assertEquals('Un nouvel article de Mario Super est passé dans l\'état "À valider" et vous devez vérifier pour l\'état "A lire". Katsuhiro Otomo en dédicace ! http://localhost'.BASE_URL.'/cms/articleview/id/5',
+    $this->assertEquals('Un nouvel article de Mario Super est passé dans l\'état "À valider" et vous devez vérifier pour l\'état "A lire". Katsuhiro Otomo en dédicace ! http://localhost'.BASE_URL.'/admin/cms/edit/id_cat/23/id/5',
                         $content);
   }
 
@@ -2037,7 +2037,7 @@ class CmsControllerWorkflowArticleRefusedTest extends CmsControllerWorkflowTestC
                                          ->getBodyText()
                                          ->getContent());
     $this->assertContains('L\'article "Katsuhiro Otomo en dédicace !', $body_mail);
-    $this->assertContains('/cms/articleview/id/4', $body_mail);
+    $this->assertContains('/admin/cms/edit/id/4', $body_mail);
     $this->assertContains('a été refusé par "Mario Super".
 Votre article laisse à désirer, à revoir de fond en comble immédiatement.',
                           $body_mail);