';
print '| ';
print '';
print ' | ';
-print ''; // date
+print ' | '; // date
print $formother->select_month($month?$month:-1,'month',1);
$formother->select_year($year?$year:-1,'year',1, 20, 1);
print ' | ';
diff --git a/htdocs/user/class/user.class.php b/htdocs/user/class/user.class.php
index e8f3487a32c..9ffa762afd1 100644
--- a/htdocs/user/class/user.class.php
+++ b/htdocs/user/class/user.class.php
@@ -1793,13 +1793,13 @@ class User extends CommonObject
$label = '' . $langs->trans("User") . '';
$label.= '';
- $label .= '' . $langs->trans('Name') . ': ' . $this->getFullName($langs,'','');
+ $label.= '' . $langs->trans('Name') . ': ' . $this->getFullName($langs,'','');
if (! empty($this->login))
- $label .= '
' . $langs->trans('Login') . ': ' . $this->login;
+ $label.= '
' . $langs->trans('Login') . ': ' . $this->login;
if (! empty($this->email))
- $label .= '
' . $langs->trans("EMail").': '.$this->email;
+ $label.= '
' . $langs->trans("EMail").': '.$this->email;
if (! empty($this->admin))
- $label .= '
' . $langs->trans("Administrator").': '.yn($this->admin);
+ $label.= '
' . $langs->trans("Administrator").': '.yn($this->admin);
if (! empty($this->societe_id)) {
$thirdpartystatic = new Societe($db);
$thirdpartystatic->fetch($this->societe_id);
@@ -1807,11 +1807,10 @@ class User extends CommonObject
$company=' ('.$langs->trans("Company").': '.$thirdpartystatic->name.')';
}
$type=($this->societe_id?$langs->trans("External").$company:$langs->trans("Internal"));
- $label .= '
' . $langs->trans("Type") . ': ' . $type;
+ $label.= '
' . $langs->trans("Type") . ': ' . $type;
if (! empty($this->photo))
{
- $label.= '
';
- //if (! is_object($form)) $form = new Form($db);
+ $label.= '
';
$label.= Form::showphoto('userphoto', $this, 80);
}
$label.= '
';