Small bug fix
-
Hi there.
I found a small bug in the URL check function. It leads to a wrong url creation whenever there is already a “?” char in the URL (the URL has already get params).
Lime 163:
You implemented:
if (strpos(‘?’, $url))Should be:
if (strpos($url, ‘?’))Then it is working correctly ??
- The topic ‘Small bug fix’ is closed to new replies.