diff --git a/htdocs/contact/canvas/actions_contactcard_common.class.php b/htdocs/contact/canvas/actions_contactcard_common.class.php
new file mode 100644
index 00000000000..a9556194080
--- /dev/null
+++ b/htdocs/contact/canvas/actions_contactcard_common.class.php
@@ -0,0 +1,322 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/**
+ * \file htdocs/contact/canvas/actions_contactcard_common.class.php
+ * \ingroup thirdparty
+ * \brief Fichier de la classe Thirdparty contact card controller (common)
+ * \version $Id$
+ */
+
+/**
+ * \class ActionsContactCardCommon
+ * \brief Classe permettant la gestion des contacts par defaut
+ */
+class ActionsContactCardCommon
+{
+ var $db;
+
+ //! Numero d'erreur Plage 1280-1535
+ var $errno = 0;
+ //! Template container
+ var $tpl = array();
+ //! Object container
+ var $object;
+ //! Canvas
+ var $canvas;
+
+ /**
+ * Constructeur de la classe
+ * @param DB Handler acces base de donnees
+ */
+ function ActionsContactCardCommon($DB)
+ {
+ $this->db = $DB;
+ }
+
+ /**
+ * Assigne les valeurs par defaut pour le canvas
+ * @param action Type of template
+ */
+ function assign_values($action='')
+ {
+ global $conf, $langs, $user, $mysoc, $canvas;
+ global $form, $formadmin, $formcompany;
+
+ foreach($this->object as $key => $value)
+ {
+ $this->tpl[$key] = $value;
+ }
+
+ if ($action == 'create' || $action == 'edit')
+ {
+ // Load object modCodeClient
+ $module=$conf->global->SOCIETE_CODECLIENT_ADDON;
+ if (! $module) dolibarr_error('',$langs->trans("ErrorModuleThirdPartyCodeInCompanyModuleNotDefined"));
+ if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php')
+ {
+ $module = substr($module, 0, dol_strlen($module)-4);
+ }
+ require_once(DOL_DOCUMENT_ROOT ."/includes/modules/societe/".$module.".php");
+ $modCodeClient = new $module;
+ $this->tpl['auto_customercode'] = $modCodeClient->code_auto;
+ // We verified if the tag prefix is used
+ if ($modCodeClient->code_auto) $this->tpl['prefix_customercode'] = $modCodeClient->verif_prefixIsUsed();
+
+ // Load object modCodeFournisseur
+ $module=$conf->global->SOCIETE_CODEFOURNISSEUR_ADDON;
+ if (! $module) $module=$conf->global->SOCIETE_CODECLIENT_ADDON;
+ if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php')
+ {
+ $module = substr($module, 0, dol_strlen($module)-4);
+ }
+ require_once(DOL_DOCUMENT_ROOT ."/includes/modules/societe/".$module.".php");
+ $modCodeFournisseur = new $module;
+ $this->tpl['auto_suppliercode'] = $modCodeFournisseur->code_auto;
+ // We verified if the tag prefix is used
+ if ($modCodeFournisseur->code_auto) $this->tpl['prefix_suppliercode'] = $modCodeFournisseur->verif_prefixIsUsed();
+
+ // TODO create a function
+ $this->tpl['select_customertype'] = '';
+
+ // Customer
+ $this->tpl['customercode'] = $this->object->code_client;
+ if ((!$this->object->code_client || $this->object->code_client == -1) && $modCodeClient->code_auto) $this->tpl['customercode'] = $modCodeClient->getNextValue($this->object,0);
+ $this->tpl['ismodifiable_customercode'] = $this->object->codeclient_modifiable();
+ $s=$modCodeClient->getToolTip($langs,$this->object,0);
+ $this->tpl['help_customercode'] = $form->textwithpicto('',$s,1);
+
+ // Supplier
+ $this->tpl['yn_supplier'] = $form->selectyesno("fournisseur",$this->object->fournisseur,1);
+ $this->tpl['suppliercode'] = $this->object->code_fournisseur;
+ if ((!$this->object->code_fournisseur || $this->object->code_fournisseur == -1) && $modCodeFournisseur->code_auto) $this->tpl['suppliercode'] = $modCodeFournisseur->getNextValue($this->object,1);
+ $this->tpl['ismodifiable_suppliercode'] = $this->object->codefournisseur_modifiable();
+ $s=$modCodeFournisseur->getToolTip($langs,$this->object,1);
+ $this->tpl['help_suppliercode'] = $form->textwithpicto('',$s,1);
+
+ $this->object->LoadSupplierCateg();
+ $this->tpl['suppliercategory'] = $this->object->SupplierCategories;
+ $this->tpl['select_suppliercategory'] = $form->selectarray("fournisseur_categorie",$this->object->SupplierCategories,$_POST["fournisseur_categorie"],1);
+
+ // Zip
+ $this->tpl['select_zip'] = $formcompany->select_ziptown($this->object->cp,'zipcode',array('town','selectpays_id','departement_id'),6);
+
+ // Town
+ $this->tpl['select_town'] = $formcompany->select_ziptown($this->object->ville,'town',array('zipcode','selectpays_id','departement_id'));
+
+ // Country
+ $this->tpl['select_country'] = $form->select_country($this->object->pays_id,'pays_id');
+ $countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';
+
+ if ($user->admin) $this->tpl['info_admin'] = info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
+
+ // State
+ if ($this->object->pays_id) $this->tpl['select_state'] = $formcompany->select_state($this->object->departement_id,$this->object->pays_code);
+ else $this->tpl['select_state'] = $countrynotdefined;
+
+ // Language
+ if ($conf->global->MAIN_MULTILANGS) $this->tpl['select_lang'] = $formadmin->select_language(($this->object->default_lang?$this->object->default_lang:$conf->global->MAIN_LANG_DEFAULT),'default_lang',0,0,1);
+
+ // VAT
+ $this->tpl['yn_assujtva'] = $form->selectyesno('assujtva_value',$this->tpl['tva_assuj'],1); // Assujeti par defaut en creation
+
+ // Select users
+ $this->tpl['select_users'] = $form->select_dolusers($this->object->commercial_id,'commercial_id',1);
+
+ // Local Tax
+ // TODO mettre dans une classe propre au pays
+ if($mysoc->pays_code=='ES')
+ {
+ $this->tpl['localtax'] = '';
+
+ if($mysoc->localtax1_assuj=="1" && $mysoc->localtax2_assuj=="1")
+ {
+ $this->tpl['localtax'].= '
';
+ }
+ }
+
+ }
+
+ if ($action == 'view')
+ {
+ $this->tpl['showrefnav'] = $form->showrefnav($this->object,'socid','',($user->societe_id?0:1),'rowid','nom');
+
+ $this->tpl['checkcustomercode'] = $this->object->check_codeclient();
+ $this->tpl['checksuppliercode'] = $this->object->check_codefournisseur();
+ $this->tpl['address'] = dol_nl2br($this->object->address);
+
+ $img=picto_from_langcode($this->pays_code);
+ if ($this->object->isInEEC()) $this->tpl['country'] = $form->textwithpicto(($img?$img.' ':'').$this->object->pays,$langs->trans("CountryIsInEEC"),1,0);
+ $this->tpl['country'] = ($img?$img.' ':'').$this->pays;
+
+ $this->tpl['phone'] = dol_print_phone($this->object->tel,$this->object->pays_code,0,$this->object->id,'AC_TEL');
+ $this->tpl['fax'] = dol_print_phone($this->object->fax,$this->object->pays_code,0,$this->object->id,'AC_FAX');
+ $this->tpl['email'] = dol_print_email($this->object->email,0,$this->object->id,'AC_EMAIL');
+ $this->tpl['url'] = dol_print_url($this->object->url);
+
+ $this->tpl['tva_assuj'] = yn($this->object->tva_assuj);
+
+ // Third party type
+ $arr = $formcompany->typent_array(1);
+ $this->tpl['typent'] = $arr[$this->object->typent_code];
+
+ if ($conf->global->MAIN_MULTILANGS)
+ {
+ require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php");
+ //$s=picto_from_langcode($this->default_lang);
+ //print ($s?$s.' ':'');
+ $langs->load("languages");
+ $this->tpl['default_lang'] = ($this->default_lang?$langs->trans('Language_'.$this->object->default_lang):'');
+ }
+
+ $this->tpl['image_edit'] = img_edit();
+
+ $this->tpl['display_rib'] = $this->object->display_rib();
+
+ // Sales representatives
+ // TODO move in business class
+ $sql = "SELECT count(sc.rowid) as nb";
+ $sql.= " FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc";
+ $sql.= " WHERE sc.fk_soc =".$this->object->id;
+ $resql = $this->db->query($sql);
+ if ($resql)
+ {
+ $num = $this->db->num_rows($resql);
+ $obj = $this->db->fetch_object($resql);
+ $this->tpl['sales_representatives'] = $obj->nb?($obj->nb):$langs->trans("NoSalesRepresentativeAffected");
+ }
+ else
+ {
+ dol_print_error($this->db);
+ }
+
+ // Linked member
+ if ($conf->adherent->enabled)
+ {
+ $langs->load("members");
+ $adh=new Adherent($this->db);
+ $result=$adh->fetch('','',$this->object->id);
+ if ($result > 0)
+ {
+ $adh->ref=$adh->getFullName($langs);
+ $this->tpl['linked_member'] = $adh->getNomUrl(1);
+ }
+ else
+ {
+ $this->tpl['linked_member'] = $langs->trans("UserNotLinkedToMember");
+ }
+ }
+ }
+ }
+
+ /**
+ * Assigne les valeurs POST dans l'objet
+ */
+ function assign_post()
+ {
+ global $langs, $mysoc;
+
+ $this->object->id = $_POST["socid"];
+ $this->object->nom = $_POST["nom"];
+ $this->object->prefix_comm = $_POST["prefix_comm"];
+ $this->object->client = $_POST["client"];
+ $this->object->code_client = $_POST["code_client"];
+ $this->object->fournisseur = $_POST["fournisseur"];
+ $this->object->code_fournisseur = $_POST["code_fournisseur"];
+ $this->object->adresse = $_POST["adresse"]; // TODO obsolete
+ $this->object->address = $_POST["adresse"];
+ $this->object->cp = $_POST["cp"];
+ $this->object->ville = $_POST["ville"];
+ $this->object->pays_id = $_POST["pays_id"]?$_POST["pays_id"]:$mysoc->pays_id;
+ $this->object->departement_id = $_POST["departement_id"];
+ $this->object->tel = $_POST["tel"];
+ $this->object->fax = $_POST["fax"];
+ $this->object->email = $_POST["email"];
+ $this->object->url = $_POST["url"];
+ $this->object->capital = $_POST["capital"];
+ $this->object->siren = $_POST["idprof1"];
+ $this->object->siret = $_POST["idprof2"];
+ $this->object->ape = $_POST["idprof3"];
+ $this->object->idprof4 = $_POST["idprof4"];
+ $this->object->typent_id = $_POST["typent_id"];
+ $this->object->effectif_id = $_POST["effectif_id"];
+ $this->object->gencod = $_POST["gencod"];
+ $this->object->forme_juridique_code = $_POST["forme_juridique_code"];
+ $this->object->default_lang = $_POST["default_lang"];
+ $this->object->commercial_id = $_POST["commercial_id"];
+
+ $this->object->tva_assuj = $_POST["assujtva_value"]?$_POST["assujtva_value"]:1;
+ $this->object->tva_intra = $_POST["tva_intra"];
+
+ //Local Taxes
+ $this->object->localtax1_assuj = $_POST["localtax1assuj_value"];
+ $this->object->localtax2_assuj = $_POST["localtax2assuj_value"];
+
+ // We set pays_id, and pays_code label of the chosen country
+ // TODO move in business class
+ if ($this->object->pays_id)
+ {
+ $sql = "SELECT code, libelle FROM ".MAIN_DB_PREFIX."c_pays WHERE rowid = ".$this->object->pays_id;
+ $resql=$this->db->query($sql);
+ if ($resql)
+ {
+ $obj = $this->db->fetch_object($resql);
+ }
+ else
+ {
+ dol_print_error($this->db);
+ }
+ $this->object->pays_code = $obj->code;
+ $this->object->pays = $langs->trans("Country".$obj->code)?$langs->trans("Country".$obj->code):$obj->libelle;
+ }
+ }
+
+ /**
+ * Load data control
+ */
+ function doActions($socid)
+ {
+ global $conf, $user, $langs;
+
+
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/actions_contactcard_default.class.php b/htdocs/contact/canvas/default/actions_contactcard_default.class.php
new file mode 100644
index 00000000000..6cac724dc38
--- /dev/null
+++ b/htdocs/contact/canvas/default/actions_contactcard_default.class.php
@@ -0,0 +1,127 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/**
+ * \file htdocs/contact/canvas/default/actions_contactcard_default.class.php
+ * \ingroup thirdparty
+ * \brief Fichier de la classe Thirdparty contact card controller (default canvas)
+ * \version $Id$
+ */
+include_once(DOL_DOCUMENT_ROOT.'/contact/canvas/actions_contactcard_common.class.php');
+
+/**
+ * \class ActionsContactCardDefault
+ * \brief Classe permettant la gestion des contacts par defaut
+ */
+class ActionsContactCardDefault extends ActionsContactCardCommon
+{
+ var $db;
+
+ //! Canvas
+ var $canvas;
+
+ /**
+ * Constructeur de la classe
+ * @param DB Handler acces base de donnees
+ */
+ function ActionsContactCardDefault($DB)
+ {
+ $this->db = $DB;
+ }
+
+ /**
+ * Return the title of card
+ */
+ function getTitle($action)
+ {
+ global $langs;
+
+ $out='';
+
+ if ($action == 'view') $out.= $langs->trans("ThirdParty");
+ if ($action == 'edit') $out.= $langs->trans("EditCompany");
+ if ($action == 'create') $out.= $langs->trans("NewCompany");
+
+ return $out;
+ }
+
+ /**
+ * Assigne les valeurs POST dans l'objet
+ */
+ function assign_post()
+ {
+ parent::assign_post();
+ }
+
+ /**
+ * Execute actions
+ * @param Id of object (may be empty for creation)
+ */
+ function doActions($socid)
+ {
+ $return = parent::doActions($socid);
+
+ return $return;
+ }
+
+ /**
+ * Assign custom values for canvas
+ * @param action Type of action
+ */
+ function assign_values($action='')
+ {
+ global $conf, $langs, $user, $mysoc;
+ global $form, $formadmin, $formcompany;
+
+ parent::assign_values($action);
+
+ if ($action == 'create' || $action == 'edit')
+ {
+
+ }
+
+ if ($action == 'view')
+ {
+ // Confirm delete third party
+ if ($_GET["action"] == 'delete')
+ {
+ $this->tpl['action_delete'] = $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$this->object->id,$langs->trans("DeleteACompany"),$langs->trans("ConfirmDeleteCompany"),"confirm_delete",'',0,2);
+ }
+ }
+ }
+
+ /**
+ * Check permissions of a user to show a page and an object. Check read permission
+ * If $_REQUEST['action'] defined, we also check write permission.
+ * @param user User to check
+ * @param features Features to check (in most cases, it's module name)
+ * @param objectid Object ID if we want to check permission on a particular record (optionnal)
+ * @param dbtablename Table name where object is stored. Not used if objectid is null (optionnal)
+ * @param feature2 Feature to check (second level of permission)
+ * @param dbt_keyfield Field name for socid foreign key if not fk_soc. (optionnal)
+ * @param dbt_select Field name for select if not rowid. (optionnal)
+ * @return int 1
+ */
+ function restrictedArea($user, $features='societe', $objectid=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
+ {
+ return restrictedArea($user,$features,$objectid,$dbtablename,$feature2,$dbt_keyfield,$dbt_select);
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/dao_contact_default.class.php b/htdocs/contact/canvas/default/dao_contact_default.class.php
new file mode 100644
index 00000000000..85aaf4e3bf9
--- /dev/null
+++ b/htdocs/contact/canvas/default/dao_contact_default.class.php
@@ -0,0 +1,109 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/**
+ * \file htdocs/contact/canvas/default/dao_contact_default.class.php
+ * \ingroup thirdparty
+ * \brief Fichier de la classe des contacts par defaut
+ * \version $Id$
+ */
+
+/**
+ * \class DaoContactDefault
+ * \brief Classe permettant la gestion des contacts par defaut, cette classe surcharge la classe contact
+ */
+class DaoContactDefault extends Contact
+{
+ var $db;
+
+ //! Numero d'erreur Plage 1280-1535
+ var $errno = 0;
+
+ /**
+ * Constructeur de la classe
+ * @param DB Handler acces base de donnees
+ */
+ function DaoContactDefault($DB)
+ {
+ $this->db = $DB;
+ }
+
+ /**
+ * Lecture des donnees dans la base
+ * @param id Element id
+ * @param action Type of action
+ */
+ function fetch($id='', $action='')
+ {
+ $result = parent::fetch($id);
+
+ return $result;
+ }
+
+ /**
+ * Create third party in database
+ * @param user Object of user that ask creation
+ * @return int >= 0 if OK, < 0 if KO
+ */
+ function create($user='')
+ {
+ $result = parent::create($user);
+
+ return $result;
+ }
+
+ /**
+ * Update parameters of third party
+ * @param id id societe
+ * @param user Utilisateur qui demande la mise a jour
+ * @param call_trigger 0=non, 1=oui
+ * @param allowmodcodeclient Inclut modif code client et code compta
+ * @param allowmodcodefournisseur Inclut modif code fournisseur et code compta fournisseur
+ * @return int <0 si ko, >=0 si ok
+ */
+ function update($id, $user='', $call_trigger=1, $allowmodcodeclient=0, $allowmodcodefournisseur=0)
+ {
+ $result = parent::update($id, $user, $call_trigger, $allowmodcodeclient, $allowmodcodefournisseur);
+
+ return $result;
+ }
+
+ /**
+ * Delete third party in database
+ * @param id id de la societe a supprimer
+ */
+ function delete($id)
+ {
+ $result = parent::delete($id);
+
+ return $result;
+ }
+
+ /**
+ * Fetch datas list
+ */
+ function LoadListDatas($limit, $offset, $sortfield, $sortorder)
+ {
+ global $conf, $langs;
+
+ $this->list_datas = array();
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/index.php b/htdocs/contact/canvas/default/index.php
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/htdocs/contact/canvas/default/tpl/contactcard_create.tpl.php b/htdocs/contact/canvas/default/tpl/contactcard_create.tpl.php
new file mode 100644
index 00000000000..e2ea4262409
--- /dev/null
+++ b/htdocs/contact/canvas/default/tpl/contactcard_create.tpl.php
@@ -0,0 +1,26 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/tpl/contactcard_edit.tpl.php b/htdocs/contact/canvas/default/tpl/contactcard_edit.tpl.php
new file mode 100644
index 00000000000..e2ea4262409
--- /dev/null
+++ b/htdocs/contact/canvas/default/tpl/contactcard_edit.tpl.php
@@ -0,0 +1,26 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/tpl/contactcard_view.tpl.php b/htdocs/contact/canvas/default/tpl/contactcard_view.tpl.php
new file mode 100644
index 00000000000..e2ea4262409
--- /dev/null
+++ b/htdocs/contact/canvas/default/tpl/contactcard_view.tpl.php
@@ -0,0 +1,26 @@
+
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/htdocs/contact/canvas/default/tpl/index.php b/htdocs/contact/canvas/default/tpl/index.php
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/htdocs/contact/canvas/index.php b/htdocs/contact/canvas/index.php
new file mode 100644
index 00000000000..e69de29bb2d