diff --git a/include/lib/ac_common.php b/include/lib/ac_common.php index cf52df5e6..49a312fd3 100644 --- a/include/lib/ac_common.php +++ b/include/lib/ac_common.php @@ -1110,9 +1110,9 @@ function show_menu($module) { // there is only one submenu so we include the code or javascript // or we show the submenu - if ( trim($amenu[0]['me_url']) != "" || - trim ($amenu[0]['me_file']) != "" || - trim ($amenu[0]['me_javascript']) != "" ) + if ( trim($amenu[0]['me_url']??"") != "" || + trim ($amenu[0]['me_file']??"") != "" || + trim ($amenu[0]['me_javascript']??"") != "" ) { echo '
'; echo h2info(_($amenu[0]['me_menu'])); diff --git a/include/lib/html_input.class.php b/include/lib/html_input.class.php index 94f2d0ed3..9ea2e3b1d 100755 --- a/include/lib/html_input.class.php +++ b/include/lib/html_input.class.php @@ -233,10 +233,10 @@ var $css_size; if ( DEBUGNOALYSS > 2) { return ''. $p_id . - '= '. + '= '. ''; }else - return ''; + return ''; } static function extension() diff --git a/include/lib/pdf_core.class.php b/include/lib/pdf_core.class.php index 8c1f4b850..d46355f3c 100644 --- a/include/lib/pdf_core.class.php +++ b/include/lib/pdf_core.class.php @@ -275,7 +275,7 @@ class PDF_Core extends TFPDF function is_fill($p_step) { if ($p_step % 2 == 0) { - $this->SetFillColor(220, 221, 255); + $this->SetFillColor(239, 239, 255); $fill = 1; } else { $this->SetFillColor(255, 255, 255);