diff --git a/htdocs/contact/class/contact.class.php b/htdocs/contact/class/contact.class.php index e51a3358614..77743ba26d6 100644 --- a/htdocs/contact/class/contact.class.php +++ b/htdocs/contact/class/contact.class.php @@ -1328,7 +1328,10 @@ class Contact extends CommonObject $this->country_code = 'FR'; $this->country = 'France'; $this->email = 'specimen@specimen.com'; - $this->skype = 'tom.hanson'; + $this->skype = 'tom.hanson'; + $this->socialnetworks = array( + 'skype' => 'tom.hanson', + ); $this->phone_pro = '0909090901'; $this->phone_perso = '0909090902'; diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php index cc01b3700b6..f2d507059b9 100644 --- a/htdocs/societe/class/societe.class.php +++ b/htdocs/societe/class/societe.class.php @@ -3579,6 +3579,12 @@ class Societe extends CommonObject $this->twitter='tomhanson'; $this->facebook='tomhanson'; $this->linkedin='tomhanson'; + $this->socialnetworks = array( + 'skype' => 'tom.hanson', + 'twitter' => 'tomhanson', + 'facebook' => 'tomhanson', + 'linkedin' => 'tomhanson', + ); $this->url='http://www.specimen.com'; $this->phone='0909090901'; diff --git a/htdocs/user/class/user.class.php b/htdocs/user/class/user.class.php index ad7f8e7ec27..39d4066b84c 100644 --- a/htdocs/user/class/user.class.php +++ b/htdocs/user/class/user.class.php @@ -2713,6 +2713,12 @@ class User extends CommonObject $this->twitter='twitterpseudo'; $this->facebook='facebookpseudo'; $this->linkedin='linkedinpseudo'; + $this->socialnetworks = array( + 'skype' => 'skypepseudo', + 'twitter' => 'twitterpseudo', + 'facebook' => 'facebookpseudo', + 'linkedin' => 'linkedinpseudo', + ); $this->office_phone='0999999999'; $this->office_fax='0999999998'; $this->user_mobile='0999999997';