diff --git a/htdocs/core/class/html.formcompany.class.php b/htdocs/core/class/html.formcompany.class.php
index 282320444cd..c60b6675a1d 100644
--- a/htdocs/core/class/html.formcompany.class.php
+++ b/htdocs/core/class/html.formcompany.class.php
@@ -757,6 +757,9 @@ class FormCompany
}
print "";
if ($user->admin) print ' '.info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
+
+ print ajax_combobox($htmlname);
+
print "\n";
}
}
diff --git a/htdocs/core/class/html.formticket.class.php b/htdocs/core/class/html.formticket.class.php
index 770e1fe08d0..b3ddc39b618 100644
--- a/htdocs/core/class/html.formticket.class.php
+++ b/htdocs/core/class/html.formticket.class.php
@@ -157,12 +157,12 @@ class FormTicket
}
print '';
- print '
';
+ print '';
if ($this->withref) {
// Ref
$defaultref = $ticketstat->getDefaultRef();
- print '| ' . $langs->trans("Ref") . ' | |
';
+ print '| ' . $langs->trans("Ref") . ' | |
';
}
// FK_USER_CREATE
@@ -249,6 +249,7 @@ class FormTicket
// If no socid, set to -1 to avoid full contacts list
$selectedCompany = ($this->withfromsocid > 0) ? $this->withfromsocid : -1;
$nbofcontacts = $form->select_contacts($selectedCompany, $this->withfromcontactid, 'contactid', 3, '', '', 0, 'minwidth200');
+ print ' ';
$formcompany->selectTypeContact($ticketstatic, '', 'type', 'external', '', 0, 'maginleftonly');
print '';
} else {
@@ -338,7 +339,7 @@ class FormTicket
}
include_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php';
$uselocalbrowser = true;
- $doleditor = new DolEditor('message', GETPOST('message', 'alpha'), '100%', 250, 'dolibarr_details', 'In', true, $uselocalbrowser);
+ $doleditor = new DolEditor('message', GETPOST('message', 'alpha'), '100%', 230, 'dolibarr_details', 'In', true, $uselocalbrowser);
$doleditor->Create();
print '';
diff --git a/htdocs/core/modules/modTicket.class.php b/htdocs/core/modules/modTicket.class.php
index 98252c655b4..f98343865c2 100644
--- a/htdocs/core/modules/modTicket.class.php
+++ b/htdocs/core/modules/modTicket.class.php
@@ -280,6 +280,20 @@ class modTicket extends DolibarrModules
'target' => '',
'user' => 0);
$r++;
+
+ $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
+ 'type' => 'left',
+ 'titre' => 'Statistics',
+ 'mainmenu' => 'ticket',
+ 'url' => '/ticket/stats/index.php',
+ 'langs' => 'ticket',
+ 'position' => 107,
+ 'enabled' => '$conf->ticket->enabled',
+ 'perms' => '$user->rights->ticket->read',
+ 'target' => '',
+ 'user' => 0);
+ $r++;
+
}
/**