kcfinder icon indicating copy to clipboard operation
kcfinder copied to clipboard

Normalize url

Open stempora opened this issue 9 years ago • 0 comments

Hi,

If the first char is '/' you normalize it, else if http:// then you transform to absolute , it should be the oposite ...

            $this->config['uploadURL'] = (substr($this->config['uploadURL'], 0, 1) === "/")
                ? path::rel2abs_url($this->config['uploadURL'])
                : path::normalize($this->config['uploadURL']);

stempora avatar May 09 '15 12:05 stempora