HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 8.2.29
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/backwpup/inc/class-recursive-directory.php
<?php

/**
 * Wraps RecursiveDirectoryIterator to fix paths.
 *
 * @since 3.4.0
 */
class BackWPup_Recursive_Directory extends RecursiveDirectoryIterator
{
    /**
     * Creates the iterator.
     *
     * Fixes the path before calling the parent constructor.
     *
     * @param string $path
     */
    public function __construct($path, $flags = null)
    {
        if ($flags === null) {
            $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO;
        }
        parent::__construct(BackWPup_Path_Fixer::fix_path($path), $flags);
    }
}