this line :
if (!is_link($symlink) || realpath(readlink($symlink)) != realpath($filename)) {
should be :
if (!is_link($symlink) || realpath($symlink) != realpath($filename)) {
this line :
if (!is_link($symlink) || realpath(readlink($symlink)) != realpath($filename)) {
should be :
if (!is_link($symlink) || realpath($symlink) != realpath($filename)) {
Comments
Comment #1
mikeytown2 commentedThis issue removes all symlinks; merging all symlink issues into this one.
#174380: Remove symlink creation. Let each path have own file