Skip to content
Snippets Groups Projects
Commit decbda3e authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix inversion application name - company name

parent a9354e5f
Branches
Tags
No related merge requests found
...@@ -294,8 +294,8 @@ class Notify ...@@ -294,8 +294,8 @@ class Notify
//$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
// Define some vars // Define some vars
$application = $mysoc->name; $application = 'Dolibarr';
//if (! empty($conf->global->MAIN_APPLICATION_TITLE)) $application = $conf->global->MAIN_APPLICATION_TITLE; if (! empty($conf->global->MAIN_APPLICATION_TITLE)) $application = $conf->global->MAIN_APPLICATION_TITLE;
$replyto = $conf->notification->email_from; $replyto = $conf->notification->email_from;
$filename = basename($file); $filename = basename($file);
$mimefile = dol_mimetype($file); $mimefile = dol_mimetype($file);
...@@ -356,7 +356,7 @@ class Notify ...@@ -356,7 +356,7 @@ class Notify
$outputlangs->setDefaultLang($obj->default_lang); $outputlangs->setDefaultLang($obj->default_lang);
} }
$subject = '['.$application.'] '.$outputlangs->transnoentitiesnoconv("DolibarrNotification"); $subject = '['.$mysoc->name.'] '.$outputlangs->transnoentitiesnoconv("DolibarrNotification");
switch ($notifcode) { switch ($notifcode) {
case 'BILL_VALIDATE': case 'BILL_VALIDATE':
...@@ -524,7 +524,7 @@ class Notify ...@@ -524,7 +524,7 @@ class Notify
$link = ''; $link = '';
$num++; $num++;
$subject = '['.$application.'] '.$langs->transnoentitiesnoconv("DolibarrNotification"); $subject = '['.$mysoc->name.'] '.$langs->transnoentitiesnoconv("DolibarrNotification");
switch ($notifcode) { switch ($notifcode) {
case 'BILL_VALIDATE': case 'BILL_VALIDATE':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment