Skip to content

Commit

Permalink
Merge pull request #3204 from hregis/3.8_story2
Browse files Browse the repository at this point in the history
Fix: wrong translation
  • Loading branch information
eldy committed Jul 16, 2015
2 parents 085ecba + e6e39ae commit e62595b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions htdocs/contact/info.php
@@ -1,7 +1,7 @@
<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2005-2015 Regis Houssin <regis.houssin@capnetworks.com>
*
* 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
Expand Down Expand Up @@ -30,6 +30,7 @@

$langs->load("companies");


// Security check
$contactid = GETPOST("id",'int');
if ($user->societe_id) $socid=$user->societe_id;
Expand All @@ -40,8 +41,9 @@
/*
* View
*/
$title = (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));

llxHeader('',$langs->trans("ContactsAddresses"),'EN:Module_Third_Parties|FR:Module_Tiers|ES:M&oacute;dulo_Empresas');
llxHeader('',$title,'EN:Module_Third_Parties|FR:Module_Tiers|ES:M&oacute;dulo_Empresas');


$contact = new Contact($db);
Expand All @@ -51,7 +53,7 @@

$head = contact_prepare_head($contact);

dol_fiche_head($head, 'info', $langs->trans("ContactsAddresses"), 0, 'contact');
dol_fiche_head($head, 'info', $title, 0, 'contact');


print '<table width="100%"><tr><td>';
Expand Down

0 comments on commit e62595b

Please sign in to comment.