Fix: Removed bad char

This commit is contained in:
Laurent Destailleur 2014-08-14 00:55:27 +02:00
parent b35b5690c2
commit 40349a9f53

View File

@ -109,7 +109,7 @@ class FormProjets
//else $labeltoshow.=' ('.$langs->trans("Private").')';
if (!empty($selected) && $selected == $obj->rowid && $obj->fk_statut > 0)
{
$out.= '<option value="'.$obj->rowid.'" selected="selected">'.$labeltoshow.' - '.dol_trunc($obj->title,$maxlength).'</option>';
$out.= '<option value="'.$obj->rowid.'" selected="selected">'.$labeltoshow.' '.dol_trunc($obj->title,$maxlength).'</option>';
}
else
{