Fix Escape HTML string
This commit is contained in:
parent
622f9c9df6
commit
fadc60e940
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ $mod_user=new User(DbConnect(),$uid);
|
|||
foreach ( $Dossier as $rDossier) {
|
||||
|
||||
$priv=$mod_user->get_privilege($rDossier['dos_id']);
|
||||
printf("<TR><TD> Dossier : %s </TD>",$rDossier['dos_name']);
|
||||
printf("<TR><TD> Dossier : %s </TD>",h($rDossier['dos_name']));
|
||||
|
||||
$select=new widget('select');
|
||||
$select->table=1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue