Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / update / update.manager.inc
index 399694f2c7ab325fd6b4d2af8c2736d063c1c1c3..2229f0a205a80e3a66f34d8998476954e976fc47 100644 (file)
@@ -208,7 +208,7 @@ function update_manager_file_get($url) {
   $remote_schemes = ['http', 'https', 'ftp', 'ftps', 'smb', 'nfs'];
   if (!isset($parsed_url['scheme']) || !in_array($parsed_url['scheme'], $remote_schemes)) {
     // This is a local file, just return the path.
-    return drupal_realpath($url);
+    return \Drupal::service('file_system')->realpath($url);
   }
 
   // Check the cache and download the file if needed.