From 1d69031747df3236c8eae65ecfce3102417b5fcc Mon Sep 17 00:00:00 2001 From: sparkyx Date: Mon, 20 May 2024 17:38:25 +0200 Subject: [PATCH 1/2] Version 9204 --- include/constant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/constant.php b/include/constant.php index d390c1cf4..aeb4f40b4 100644 --- a/include/constant.php +++ b/include/constant.php @@ -25,7 +25,7 @@ global $version_noalyss; // version -define('NOALYSS_VERSION', 9203 ); +define('NOALYSS_VERSION', 9204 ); // Database schema version define("DBVERSION", 196); From ae6708986d59b3959b8c9363d49baa610a5fa336 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Tue, 21 May 2024 18:28:21 +0200 Subject: [PATCH 2/2] PHP8.1 Compatibility --- include/class/acc_plan_mtable.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/class/acc_plan_mtable.class.php b/include/class/acc_plan_mtable.class.php index 015907c56..367158910 100644 --- a/include/class/acc_plan_mtable.class.php +++ b/include/class/acc_plan_mtable.class.php @@ -236,7 +236,7 @@ class Acc_Plan_MTable extends Manage_Table_SQL $text=new IText($p_key); $text->setReadOnly($readonly); $text->value=$p_value; - $min_size=(strlen($p_value)<30)?30:strlen($p_value)+5; + $min_size=(strlen($p_value??"")<30)?30:strlen($p_value)+5; $text->size=$min_size; echo $text->input(); }