Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / includes / install.core.inc
index 6a6075f7d5c8c8c903f337459b75be2130158104..a869d90b533a939fac656db599e8aa7d43f8d3e4 100644 (file)
@@ -1380,7 +1380,7 @@ function install_download_translation(&$install_state) {
  */
 function install_retrieve_file($uri, $destination) {
   $parsed_url = parse_url($uri);
-  if (is_dir(drupal_realpath($destination))) {
+  if (is_dir(\Drupal::service('file_system')->realpath($destination))) {
     // Prevent URIs with triple slashes when gluing parts together.
     $path = str_replace('///', '//', "$destination/") . drupal_basename($parsed_url['path']);
   }