This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel
Fabien Potencier 47a87849c0 bug #32818 [HttpKernel] Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler (Arman-Hosseini)
This PR was merged into the 3.4 branch.

Discussion
----------

[HttpKernel] Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler

| Q             | A
| ------------- | ---
| Branch?       | >= 3.4 <!-- see below -->
| Bug fix?      | yes
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | #32444   <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | N/A <!-- required for new features -->

I had this problem and I noticed that an issue had already been registered.
So I registered the pull request.

Commits
-------

9ed5f03b98 Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler
2019-09-08 09:16:45 +02:00
..
Bundle Fix inconsistent return points. 2019-08-20 15:31:17 +02:00
CacheClearer switched array() to [] 2019-01-16 10:39:14 +01:00
CacheWarmer switched array() to [] 2019-01-16 10:39:14 +01:00
Config Mark some/most implementations of Serializable as @internal 2019-01-30 10:03:33 +01:00
Controller [HttpKernel] Fix return type declarations 2019-08-26 09:50:50 +02:00
ControllerMetadata [Security] Fix return type declarations 2019-08-26 09:50:50 +02:00
DataCollector [HttpKernel] Fix return type declarations 2019-08-26 09:50:50 +02:00
Debug bug #32818 [HttpKernel] Fix getFileLinkFormat() to avoid returning the wrong URL in Profiler (Arman-Hosseini) 2019-09-08 09:16:45 +02:00
DependencyInjection switched array() to [] 2019-01-16 10:39:14 +01:00
Event Merge branch '2.8' into 3.4 2018-07-26 11:06:28 +02:00
EventListener [HttpKernel] Fix Apache mod_expires Session Cache-Control issue 2019-09-08 08:50:59 +02:00
Exception switched array() to [] 2019-01-16 10:39:14 +01:00
Fragment Fix inconsistent return points. 2019-08-20 15:31:17 +02:00
HttpCache [HttpKernel] Fix return type declarations 2019-08-26 09:50:50 +02:00
Log Remove superfluous phpdoc tags 2019-08-14 13:59:53 +02:00
Profiler [HttpKernel] Fix return type declarations 2019-08-26 09:50:50 +02:00
Resources Optimize SVGs 2019-04-11 11:48:14 +02:00
Tests [HttpKernel] Fix Apache mod_expires Session Cache-Control issue 2019-09-08 08:50:59 +02:00
.gitignore
CHANGELOG.md Reset profiler. 2017-10-05 12:20:28 +02:00
Client.php switched array() to [] 2019-01-16 10:39:14 +01:00
composer.json Fix HttpKernel Debug requirement 2019-01-23 14:37:11 +01:00
HttpKernel.php Remove superfluous phpdoc tags 2019-08-14 13:59:53 +02:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php Cleanup tests 2019-09-02 16:34:19 +02:00
KernelEvents.php Merge branch '2.8' into 3.3 2017-11-05 16:47:03 +01:00
KernelInterface.php [HttpKernel] Fix return type declarations 2019-08-26 09:50:50 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Updated all the README files 2016-03-04 08:12:06 +01:00
RebootableInterface.php [HttpKernel][FrameworkBundle] Add RebootableInterface, fix and un-deprecate cache:clear with warmup 2017-08-18 13:51:16 +02:00
TerminableInterface.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
UriSigner.php switched array() to [] 2019-01-16 10:39:14 +01:00

HttpKernel Component

The HttpKernel component provides a structured process for converting a Request into a Response by making use of the EventDispatcher component. It's flexible enough to create a full-stack framework (Symfony), a micro-framework (Silex) or an advanced CMS system (Drupal).

Resources