From 979f8348b6d1f83f936d579d0fd196b1e350c516 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Mon, 19 Aug 2013 15:38:31 +0100 Subject: [PATCH] Issue #1999376 by chertzog, chrisjlee: Use Symfony Request for filter module. --- core/modules/filter/filter.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/filter/filter.module b/core/modules/filter/filter.module index 261225875c61..ebb1dbbff74c 100644 --- a/core/modules/filter/filter.module +++ b/core/modules/filter/filter.module @@ -1514,7 +1514,8 @@ function _filter_html_image_secure_process($text) { $src = $image->getAttribute('src'); // Remove absolute URLs pointing to the local domain to prevent mixed // content errors. - $image->setAttribute('src', preg_replace('|^https?://' . $_SERVER['HTTP_HOST'] . '|', '', $src)); + $request = Drupal::request(); + $image->setAttribute('src', preg_replace('|^https?://' . $request->getHost() . '|', '', $src)); // Verify that $src starts with $base_path. // This also ensures that external images cannot be referenced. -- GitLab