Skip to content

Commit

Permalink
potiboard.php
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Jan 4, 2025
1 parent 2ee00f6 commit 53314e9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 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 = 'v6.62.3';
const POTI_LOT = 'lot.20241230';
const POTI_VER = 'v6.62.5';
const POTI_LOT = 'lot.20250103';

/*
(C) 2018-2024 POTI改 POTI-board redevelopment team
Expand Down Expand Up @@ -1616,6 +1616,9 @@ function check_dir ($path): void {
mkdir($path, PERMISSION_FOR_DIR);
chmod($path, PERMISSION_FOR_DIR);
}
if (!is_readable($path) || !is_writable($path)){
chmod($path, PERMISSION_FOR_DIR);
}
if (!is_dir($path)) die($path . $msg['041']);
if (!is_readable($path)) die($path . $msg['042']);
if (!is_writable($path)) die($path . $msg['043']);
Expand Down

0 comments on commit 53314e9

Please sign in to comment.