2
0
forked from Wavyzz/dolibarr

Code comment

This commit is contained in:
Laurent Destailleur
2023-04-24 17:55:54 +02:00
parent ecc85263d0
commit a09a29fa6a
2 changed files with 6 additions and 5 deletions

View File

@@ -1537,7 +1537,7 @@ function dol_escape_json($stringtoescape)
} }
/** /**
* Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields. * Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input fields.
* *
* @param string $stringtoescape String to escape * @param string $stringtoescape String to escape
* @param int $keepb 1=Keep b tags, 0=remove them completely * @param int $keepb 1=Keep b tags, 0=remove them completely

View File

@@ -584,18 +584,19 @@ if (!empty($conf->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
print '</td>'; print '</td>';
} }
print '<td class="liste_titre">'; print '<td class="liste_titre">';
print '<input class="flat" type="text" name="sref" size="6" value="'.$sref.'">'; print '<input class="flat" type="text" name="sref" size="6" value="'.dol_escape_htmltag($sref).'">';
print '</td>'; print '</td>';
print '<td class="liste_titre">'; print '<td class="liste_titre">';
print '<input class="flat" type="text" name="snom" size="8" value="'.$snom.'">'; print '<input class="flat" type="text" name="snom" size="8" value="'.dol_escape_htmltag($snom).'">';
print '</td>'; print '</td>';
if (isModEnabled("service") && $type == 1) { if (isModEnabled("service") && $type == 1) {
print '<td class="liste_titre">'; print '<td class="liste_titre">';
print '&nbsp;'; print '&nbsp;';
print '</td>'; print '</td>';
} }
print '<td class="liste_titre"><input class="flat" type="text" name="search_warehouse" size="6" value="'.$search_warehouse.'"></td>';
print '<td class="liste_titre center"><input class="flat" type="text" name="search_batch" size="6" value="'.$search_batch.'"></td>'; print '<td class="liste_titre"><input class="flat" type="text" name="search_warehouse" size="6" value="'.dol_escape_htmltag($search_warehouse).'"></td>';
print '<td class="liste_titre center"><input class="flat" type="text" name="search_batch" size="6" value="'.dol_escape_htmltag($search_batch).'"></td>';
if (empty($conf->global->PRODUCT_DISABLE_SELLBY)) { if (empty($conf->global->PRODUCT_DISABLE_SELLBY)) {
print '<td class="liste_titre center">'; print '<td class="liste_titre center">';
$key = 'sellby'; $key = 'sellby';