'.wp_kses_post($message).'
';
}
}
// Check we are outside installtion directory ?
function fileorganizer_validate_path($path) {
$currentDirectory = fileorganizer_cleanpath(realpath(ABSPATH));
$absolutePath = fileorganizer_cleanpath(realpath($path));
if($currentDirectory === $absolutePath){
return true;
}
return strpos($absolutePath, $currentDirectory) !== false;
}