Skip to content
Snippets Groups Projects
Commit 40349a9f authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Removed bad char

parent b35b5690
No related branches found
No related tags found
No related merge requests found
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment