Change default background color in PDF + PHP8.1 compatibility

This commit is contained in:
sparkyx 2023-07-01 11:57:18 +02:00
parent 71f962fd80
commit b281a90f87
3 changed files with 6 additions and 6 deletions

View file

@ -233,10 +233,10 @@ var $css_size;
if ( DEBUGNOALYSS > 2) {
return '<span style="font-size:80%;color:blue;background-color:lightgoldenrodyellow">'.
$p_id .
'= <INPUT TYPE="text" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'" style="color:blue;font-size:80%">'.
'= <INPUT TYPE="text" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value??"").'" style="color:blue;font-size:80%">'.
'</span>';
}else
return '<INPUT TYPE="hidden" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'">';
return '<INPUT TYPE="hidden" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value??"").'">';
}
static function extension()