Skip to content

Commit

Permalink
BcFolderを後方互換対応を調整
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Jul 8, 2024
1 parent 71299b5 commit 44d5727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/baser-core/src/Utility/BcFolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
Expand Down Expand Up @@ -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'];
Expand Down

0 comments on commit 44d5727

Please sign in to comment.