Skip to content

Commit

Permalink
v5.35.3
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Oct 28, 2022
1 parent e501e82 commit 172ed63
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions potiboard5/potiboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 172ed63

Please sign in to comment.