From 172ed63a359c4d97c52ea11251d89b22662af5d0 Mon Sep 17 00:00:00 2001 From: satopian Date: Fri, 28 Oct 2022 22:14:09 +0900 Subject: [PATCH] v5.35.3 --- potiboard5/potiboard.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/potiboard5/potiboard.php b/potiboard5/potiboard.php index 27d6f0fa..7af703a5 100644 --- a/potiboard5/potiboard.php +++ b/potiboard5/potiboard.php @@ -3,8 +3,8 @@ // POTI-board EVO // バージョン : -const POTI_VER = 'v5.35.1'; -const POTI_LOT = 'lot.221027'; +const POTI_VER = 'v5.35.3'; +const POTI_LOT = 'lot.221028'; /* (C) 2018-2022 POTI改 POTI-board redevelopment team @@ -2799,6 +2799,12 @@ function check_badfile ($chk, $dest = '') { } } function h($str){//出力のエスケープ + if($str===0 || $str==='0'){ + return '0'; + } + if(!$str){ + return ''; + } return htmlspecialchars((string)$str,ENT_QUOTES,'utf-8',false); }