diff --git a/htdocs/core/lib/ticket.lib.php b/htdocs/core/lib/ticket.lib.php
index e211f29962c..41e783b7597 100644
--- a/htdocs/core/lib/ticket.lib.php
+++ b/htdocs/core/lib/ticket.lib.php
@@ -883,8 +883,8 @@ function show_ticket_messaging($conf, $langs, $db, $filterobj, $objcon = '', $no
/**
* getTicketActionCommEcmList
*
- * @param ActionComm $object
- * @return array Array of documents in index table
+ * @param ActionComm $object Object ActionComm
+ * @return array Array of documents in index table
*/
function getTicketActionCommEcmList($object)
{
diff --git a/htdocs/imports/index.php b/htdocs/imports/index.php
index 2ce0139f517..7f9c113b10f 100644
--- a/htdocs/imports/index.php
+++ b/htdocs/imports/index.php
@@ -54,6 +54,7 @@ print '
';
// List of import set
/*
+print '
';
print '
';
print '';
print '| '.$langs->trans("Module").' | ';
@@ -84,6 +85,7 @@ else
print '
| '.$langs->trans("NoImportableData").' |
';
}
print '
';
+print '
';
print '
';
*/
@@ -107,6 +109,7 @@ print '
';
// List of available import format
+print '';
print '
';
print '';
print '| '.$langs->trans("AvailableFormats").' | ';
@@ -130,6 +133,7 @@ foreach($liste as $key)
}
print '
';
+print '
';
//print '';
diff --git a/htdocs/product/fournisseurs.php b/htdocs/product/fournisseurs.php
index e38fe7c4673..e1940864dd0 100644
--- a/htdocs/product/fournisseurs.php
+++ b/htdocs/product/fournisseurs.php
@@ -269,7 +269,6 @@ if (empty($reshook))
$resql = $db->query("SELECT * FROM " . MAIN_DB_PREFIX . "product_fournisseur_price_extrafields WHERE fk_object = " . $object->product_fourn_price_id);
// Insert a new extrafields row, if none exists
if ($db->num_rows($resql) != 1) {
-
$sql = "INSERT INTO " . MAIN_DB_PREFIX . "product_fournisseur_price_extrafields (fk_object, ";
foreach ($extrafield_values as $key => $value) {
$sql .= str_replace('options_', '', $key) . ', ';