You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commits
-------
6343bef [HttpKernel] Updated mirror method to check for symlinks before dirs and files
Discussion
----------
[HttpKernel] Updated mirror method to check for symlinks before dirs and files
Bug fix: yes
Feature addition: no
Backwards compatibility break: no
Symfony2 tests pass: yes
Fixes the following tickets: #2436
I believe this is a bug. Basically, the code is as follows:
Because it checks for
is_dir
first, if a directory is a symbolic link, it will get its dir made, but not its contents.It should check for
is_link
first, no?The text was updated successfully, but these errors were encountered: