Skip to content

Commit

Permalink
Fix emailcollector
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Apr 29, 2019
1 parent d0eecf9 commit 7c26785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/emailcollector/class/emailcollector.class.php
Expand Up @@ -1630,7 +1630,7 @@ public function doCollectOneCollector()
if (empty($projecttocreate->ref) || (is_numeric($projecttocreate->ref) && $projecttocreate->ref <= 0))
{
$errorforactions++;
$this->error = 'Failed to create project: Can\'t get a valid value for project Ref with numbering template '.$modele.' thirdpartyid';
$this->error = 'Failed to create project: Can\'t get a valid value for the field ref with numbering template = '.$modele.', thirdparty id = '.$thirdpartystatic->id;
}
else
{
Expand Down Expand Up @@ -1745,7 +1745,7 @@ public function doCollectOneCollector()
if (is_numeric($tickettocreate->ref) && $tickettocreate->ref <= 0)
{
$errorforactions++;
$this->error = "Failed to create ticket: Can't get a valid value for ticket Ref. Check the numbering module used to generate the reference in setup of module Ticket.";
$this->error = 'Failed to create ticket: Can\'t get a valid value for the field ref with numbering template = '.$modele.', thirdparty id = '.$thirdpartystatic->id;
}
else
{
Expand Down

0 comments on commit 7c26785

Please sign in to comment.