Skip to content

Commit

Permalink
v5.36.8
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Nov 29, 2022
1 parent 9472e52 commit 6881e1b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions potiboard5/potiboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// POTI-board EVO
// バージョン :
const POTI_VER = 'v5.36.6';
const POTI_VER = 'v5.36.8';
const POTI_LOT = 'lot.221130';

/*
Expand Down Expand Up @@ -948,8 +948,9 @@ function regist(){
if($pchk){
//KASIRAが入らない10桁のUNIX timeを取り出す
if(strlen($ltime)>10){$ltime=substr($ltime,-13,-3);}
if(RENZOKU && (time() - (int)$ltime) < RENZOKU){error(MSG020,$dest);}
if(RENZOKU2 && (time() - (int)$ltime) < RENZOKU2 && $upfile_name){error(MSG021,$dest);}
$interval=time()-(int)$ltime;
if(RENZOKU && ($interval>=0) && ($interval < RENZOKU)){error(MSG020,$dest);}
if(RENZOKU2 && ($interval>=0) && ($interval < RENZOKU2) && $upfile_name){error(MSG021,$dest);}
if($com){
switch(D_POST_CHECKLEVEL){//190622
case 1: //low
Expand Down

0 comments on commit 6881e1b

Please sign in to comment.