CSS
This commit is contained in:
parent
f86939d332
commit
c6ee45cc53
10
ChangeLog
10
ChangeLog
@ -3,6 +3,16 @@ English Dolibarr ChangeLog
|
|||||||
--------------------------------------------------------------
|
--------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
***** ChangeLog for 18.0.0 compared to 17.0.0 *****
|
||||||
|
|
||||||
|
WARNING:
|
||||||
|
|
||||||
|
Following changes may create regressions for some external modules, but were necessary to make Dolibarr better:
|
||||||
|
* The deprecated method escapeunderscore() of database handlers has been removed. You must use escapeforlike instead.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
***** ChangeLog for 17.0.0 compared to 16.0.0 *****
|
***** ChangeLog for 17.0.0 compared to 16.0.0 *****
|
||||||
|
|
||||||
For users:
|
For users:
|
||||||
|
|||||||
@ -448,8 +448,8 @@ print '<td class="liste_titre"></td>';
|
|||||||
|
|
||||||
// Status
|
// Status
|
||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre">';
|
||||||
$array = array("1"=>$langs->trans("OnlyNonValid"));
|
$array = array("1" => "OnlyNonValid");
|
||||||
print $form->selectarray('search_showonlyerrors', $array, $search_showonlyerrors, 1);
|
print $form->selectarray('search_showonlyerrors', $array, $search_showonlyerrors, 1, 0, 0, '', 1, 0, 0, 'ASC', 'search_status maxwidth200 onrightofpage', 1);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Status note
|
// Status note
|
||||||
@ -530,7 +530,7 @@ if (is_array($blocks)) {
|
|||||||
print '<td>'.dol_escape_htmltag($block->id).'</td>';
|
print '<td>'.dol_escape_htmltag($block->id).'</td>';
|
||||||
|
|
||||||
// Date
|
// Date
|
||||||
print '<td>'.dol_print_date($block->date_creation, 'dayhour').'</td>';
|
print '<td class="nowraponall">'.dol_print_date($block->date_creation, 'dayhour').'</td>';
|
||||||
|
|
||||||
// User
|
// User
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user