diff --git a/ChangeLog b/ChangeLog
index c6ae2ae82e4..035e672a5fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,6 +46,7 @@ For users:
for other users than yourself. Can also purge existing sessions.
- New: Add experimental point of sale module.
- New: Better usage when using with smartphones.
+- New: Add module FTP client.
- Fix: "Now" link works when date popup is not used.
- Fix: Debug seriously the email notification module.
- Fix: Error Call to a member function trans when refusing a supplier order.
diff --git a/htdocs/admin/external_rss.php b/htdocs/admin/external_rss.php
index b6a63afea69..4130eaf074f 100644
--- a/htdocs/admin/external_rss.php
+++ b/htdocs/admin/external_rss.php
@@ -21,11 +21,11 @@
*/
/**
- \file htdocs/admin/external_rss.php
- \ingroup external_rss
- \brief Page d'administration/configuration du module ExternalRss
- \version $Id$
-*/
+ * \file htdocs/admin/external_rss.php
+ * \ingroup external_rss
+ * \brief Page d'administration/configuration du module ExternalRss
+ * \version $Id$
+ */
require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");
@@ -92,7 +92,7 @@ if ($_POST["action"] == 'add' || $_POST["modify"])
$err++;
}
}
-
+
$result1=dolibarr_set_const($db, "EXTERNAL_RSS_TITLE_" . $_POST["norss"],$_POST[$external_rss_title],'chaine',0,'',$conf->entity);
if ($result1) $result2=dolibarr_set_const($db, "EXTERNAL_RSS_URLRSS_" . $_POST["norss"],$_POST[$external_rss_urlrss],'chaine',0,'',$conf->entity);
@@ -120,7 +120,7 @@ if ($_POST["delete"])
// Supprime boite box_external_rss de definition des boites
$sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."boxes_def";
$sql.= " WHERE file ='box_external_rss.php' AND note like '".$_POST["norss"]." %'";
-
+
$resql=$db->query($sql);
if ($resql)
{
@@ -144,7 +144,7 @@ if ($_POST["delete"])
dol_print_error($db,"sql=$sql");
exit;
}
-
+
$i++;
}
@@ -160,7 +160,7 @@ if ($_POST["delete"])
$result1=dolibarr_del_const($db,"EXTERNAL_RSS_TITLE_" . $_POST["norss"],$conf->entity);
if ($result1) $result2=dolibarr_del_const($db,"EXTERNAL_RSS_URLRSS_" . $_POST["norss"],$conf->entity);
-
+
if ($result1 && $result2)
{
$db->commit();
@@ -188,10 +188,10 @@ print_fiche_titre($langs->trans("ExternalRSSSetup"), $linkback, 'setup');
print '
';
// Formulaire ajout
-print '