From 44d5727c1b485faaf3e1d88ff5ed77f2b3723465 Mon Sep 17 00:00:00 2001 From: ryuring Date: Mon, 8 Jul 2024 19:14:16 +0900 Subject: [PATCH] =?UTF-8?q?BcFolder=E3=82=92=E5=BE=8C=E6=96=B9=E4=BA=92?= =?UTF-8?q?=E6=8F=9B=E5=AF=BE=E5=BF=9C=E3=82=92=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/baser-core/src/Utility/BcFolder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/baser-core/src/Utility/BcFolder.php b/plugins/baser-core/src/Utility/BcFolder.php index 9b90875089..83b71f861e 100644 --- a/plugins/baser-core/src/Utility/BcFolder.php +++ b/plugins/baser-core/src/Utility/BcFolder.php @@ -208,7 +208,7 @@ public function delete($path = '') */ public function copy($dest, $mode = 0777): bool { - if(is_array($mode) && empty($mode['from'])) { + if(is_array($mode) && !empty($mode['from'])) { // @deprecated 6.0.0 since 5.1.0 後方互換用 $this->log(__d('baser_core', 'BcFile::delete() では、第二引数の from キーにパスを指定するのは非推奨です。パスの指定はコンストラクタで行ってください。この要件はバージョン 6.0.0 で必須となります。')); $this->path = $mode['from']; @@ -250,7 +250,7 @@ public function copy($dest, $mode = 0777): bool */ public function move($dest, $options = []): bool { - if(empty($options['from'])) { + if(!empty($options['from'])) { // @deprecated 6.0.0 since 5.1.0 後方互換用 $this->log(__d('baser_core', 'BcFile::delete() では、第二引数の from キーにパスを指定するのは非推奨です。パスの指定はコンストラクタで行ってください。この要件はバージョン 6.0.0 で必須となります。')); $this->path = $options['from'];