Plugin Directory


Ignore:
Timestamp:
10/06/2025 03:23:19 PM (4 months ago)
Author:
DavidAnderson
Message:

Release version 1.25.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • updraftplus/trunk/restorer.php

    r3341192 r3373797  
    13891389                } else {
    13901390                   
    1391                     if ($is_dir) $updraftplus->log(sprintf("There was an error when performing the move operation by renaming or copying %s to %s: will attempt a recursive copy instead.", $working_dir."/".$file, $dest_dir.$file), 'updraftplus');
     1391                    if (!$is_dir) {
     1392                        $this->restore_log_permission_failure_message($dest_dir, 'Move '. $working_dir."/".$file." -> ".$dest_dir.$file, 'Destination');
     1393                        return new WP_Error('move_failed', $this->strings['move_failed'], $working_dir.'/'.$file.' -> '.$dest_dir.$file);
     1394                    }
     1395                   
     1396                    $updraftplus->log(sprintf("There was an error when performing the move operation by renaming or copying %s to %s: will attempt a recursive copy instead.", $working_dir."/".$file, $dest_dir.$file), 'updraftplus');
    13921397                   
    13931398                    if (empty($chmod)) $chmod = octdec(sprintf("%04d", $this->get_current_chmod($dest_dir, $wpfs)));
Note: See TracChangeset for help on using the changeset viewer.