diff --git a/htdocs/core/db/mysqli.class.php b/htdocs/core/db/mysqli.class.php index a392e374d0b..5847d88f026 100644 --- a/htdocs/core/db/mysqli.class.php +++ b/htdocs/core/db/mysqli.class.php @@ -208,6 +208,7 @@ class DoliDBMysqli extends DoliDB try { $result = $this->db->select_db($database); } catch (Exception $e) { + // Nothing done on error } return $result; } diff --git a/htdocs/install/mysql/migration/15.0.0-16.0.0.sql b/htdocs/install/mysql/migration/15.0.0-16.0.0.sql index d35797c3750..286d28ac1a6 100644 --- a/htdocs/install/mysql/migration/15.0.0-16.0.0.sql +++ b/htdocs/install/mysql/migration/15.0.0-16.0.0.sql @@ -150,6 +150,8 @@ ALTER TABLE llx_facture ADD INDEX idx_facture_datef (datef); ALTER TABLE llx_projet_task_time ADD COLUMN fk_product integer NULL; +ALTER TABLE llx_c_action_trigger MODIFY elementtype VARCHAR(64); + INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('PROPAL_MODIFY','Customer proposal modified','Executed when a customer proposal is modified','propal',2); INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('ORDER_MODIFY','Customer order modified','Executed when a customer order is set modified','commande',5); INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('BILL_MODIFY','Customer invoice modified','Executed when a customer invoice is modified','facture',7); diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index 70b5285fb2c..2e225e1658f 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -871,6 +871,9 @@ textarea.centpercent { .cursorpointer { cursor: pointer; } +.classfortooltiponclick .fa-question-circle { + cursor: pointer; +} .cursormove { cursor: move; } diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index 90607fd31be..ceb5caa9d44 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -1020,6 +1020,9 @@ textarea.centpercent { .cursorpointer { cursor: pointer; } +.classfortooltiponclick .fa-question-circle { + cursor: pointer; +} .cursormove { cursor: move; }